Advertisement:

Author Topic: [SOLVED] Font color for text in Search Box  (Read 921 times)

denver42

  • Newbie
  • *
  • Posts: 37
[SOLVED] Font color for text in Search Box
« on: September 13, 2014, 08:46:07 am »
Does anyone know how to change the font color for the text in the search box?

I've looked everywhere and can't seem to find it in the style.css using the modern theme. The box size, border, border color,etc. can be adjusted in the style sheet but the font color is impossible to change??.... any ideas? Thanks!
« Last Edit: September 13, 2014, 04:12:45 pm by denver42 »

denver42

  • Newbie
  • *
  • Posts: 37
Re: Font color for text in Search Box
« Reply #1 on: September 13, 2014, 04:11:28 pm »
Figured it out... looks like the font color is not controlled through CSS but through the Javascript in inc.search.php. Apparently it overrides any CSS rule.

Can be fixed in line 23 of inc.search.php file by changing:             

Code: [Select]
$('input[name=sPattern]').css('color', 'gray');
to...

Code: [Select]
$('input[name=sPattern]').css('color', 'black');