Hello Everyone,
I am trying to have a border around my input text field box
Here is the site
http://kevinkashou.com/test.html where I am having trouble with. I have a picture of what I am trying to do and the html portion is right after that. YOu can see what I am getting instead.
HTML Code:
<span class="border"><input type="text" class="margin" value="Type Here. . ." /></span>
Code:
.border {
width: 146px;
height: auto;
margin: 0px;
padding: 2px;
border: 1px solid #FFCC33;
}
.margin {
width: 150px;
height: auto;
margin: 0px;
padding: 0px;
font-size: 10px;
color: #999999;
}
Any Idea?
Thanks