@godfather1984:
Go into ACP > Style Manager > Main CSS > Forum Jump Menu >
Depth 1 Items: Font color: Change it to black or something.
And for whoever uses this style, when you click on the text area 'Search'; if you want to clear the box when a user clicks on it (instead of manually deleting whatever is inside):
Find: Template: header
Code:
<input type="text" class="bginput" value="Search" name="query" size="19" tabindex="1001" />
Replace with:
Code:
<input type="text" class="bginput" value="Search" name="query" size="19" tabindex="1001" onfocus="this.value=''; this.onfocus=null" />