Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
My website is www.sussexbaptist.byethost7.com
i put a background image over the menu using the css code
.main-navigation {
background-image: url(“http://sussexbaptist.byethost7.com/wp-content/uploads/2015/01/Woven-Footer.jpg”);
}
and it worked fine. but behind the search box its still the same old grey color. is there a way to apply my image to the search box as well
try this rule
where would that code be placed? in my stylesheet, or custom css?
nevermind, i figured it out using inspect element in firefox. i found a line of code in my stylesheet that said #search-icon {background-color:
and i changed it to #search-icon {
background-image: url(“http://sussexbaptist.byethost7.com/wp-content/uploads/2015/01/Woven-Footer.jpg”);
}
it works fine now