Soldato
- Joined
- 5 Aug 2003
- Posts
- 8,537
- Location
- Essex
I've modified a Wordpress theme by changing it from black to white but there is one bit of code that I can't find, it's for the search box at the top of the page, the user input text needs to be black but it is still set to white and I can't work out where it'd be, any ideas?
http://mia-media.co.uk/ocuk/vwp/
The style.css code is
Looking in the Chrome Developer Tools it seems to be over ridden by
I can't find that bit of code anywhere when manually editing, don't know if all Wordpress themes have a global search function that works independently from the theme?
http://mia-media.co.uk/ocuk/vwp/
The style.css code is
Code:
#search-input {
background: transparent;
border: ;
color: black;
display: inline;
font-size: 100%;
height: 17px;
left: 21px;
position: absolute;
top: 7px;
width: 125px;
Looking in the Chrome Developer Tools it seems to be over ridden by
Code:
element.style {
color: white;
}
Code:
<input type="text" value="Search" name="s" id="search-input" onfocus="this.value=''; changefc('white');" style="color: white; ">
I can't find that bit of code anywhere when manually editing, don't know if all Wordpress themes have a global search function that works independently from the theme?