Is there a way to make the color of the background inside the search box to white instead of black (while using the generic 'white' theme). I mean the black background around "Type and Press Enter" here:
http://www.life-beautifully.com/sample-post-with-gallery/Once again thanks for the awesome theme and all your help!
Comments
.search-form{
With regards.background-color: #fff;
}
#header .search-form:after{
border-bottom-color: #fff;
}
.search-form input[type="search"]{
color: #000; /* font color */
}
.search-form input[type="submit"]{
background-image: url("images/black/add-ons.png"); /* submit icon */
}
That did the trick for the background, but for some reason the font colors and search/ submit button stayed white and are not visible (which I see the code above intended to change).
Let me know if you have any other tips to make the other changes (font color, icon color> black) show up... or, if that doesn't work, even change the text to "Type here to search".
Thank you so much again!
http://www.life-beautifully.com/sample-post-with-gallery/
Thank you so much!
Mainly I just gave you CSS, colors was up to you, but my bad that I didn't gave it correct. Strange I was sure, I prepared it right. Btw I see that changing background image it is not so easy via plugin, hover you can try to use this CSS
.search-form{Should be better now.background-color: #000;
}
#header .search-form:after{
border-bottom-color: #000;
}
.search-form input[type="search"]{
color: #fff; /* font color */
}
.search-form input[type="submit"]{
background-image: url("http://www.life-beautifully.com/wp-content/themes/hypershot/images/black/add-ons.png"); /* submit icon */
}
With regards.