Can't find a bit of CSS/PHP code

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

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?
 
Aye but I don't know where it is in any of the Wordpress files as the index.php pulls multiple files to make up the page, I can't really describe any further and can't work out what file the bit of code is in, I imagine all Wordpress themes use a similar code so someone might know what I'm on about :p
 
I don't know where the code is, I found it using Chrome Developer Tools but it doesn't say where it's coming from as it ties into the index.php page, which is pulling the code from another .php or .css, which I can't identify so posted here hoping someone familiar with Wordpress knew where it was.
 
Back
Top Bottom