These are the codes in my style.css:
#searchform input{
background:#fff;
padding:3px;
margin-top:10px;
border:1px solid #000;
color:#555;
font-family:'Arial';
font-size:8pt;
}
#searchform input[type="submit"] {
cursor:pointer;
}
#searchform input[type="submit"]:hover {
background:#fff;
border-color:#eee;
}
That's the only thing I can find about them in it... Also here's the code in searchform.php:
<br /><form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
<div><input type="text" value="<?php the_search_query(); ?>" name="s" id="s" /><br />
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>
My site is BrittanyWigand.com and my theme is Silver Dreams...
Help?!