Page 1 of 1

Value search

Posted: Thu Jan 31, 2013 9:17 pm
by sanshay
Hello

I have been searching for this but no results.
I want the value in the search input (see image) in color white and bold.
Image

I have try a few options in de searc.tpl with style code and color #fff but nothing.
Also in explorer the text dont show, in firefox its shows white but not bold, and in chrome its show gray (see image)

Sombody can help me out here.

Regards

Re: Value search

Posted: Thu Jan 31, 2013 9:40 pm
by magipathan
I'm also facing the same problem on my theme.
any help would highly be appreciated.

Re: Value search

Posted: Thu Jan 31, 2013 10:01 pm
by sanshay
i just made a quick fix in header.tpl

Code: Select all

 <div id="search">
    <div class="button-search"></div>
    <input type="text" name="search" placeholder="<?php echo $text_search; ?>" value="<?php echo $search; ?>" />
  </div>
to

Code: Select all

 <div id="search">
    <div class="button-search"></div>
    <input type="text" name="search" placeholder="<?php echo $text_search; ?>" value="Zoeken..." />
  </div>
Now its shows up in all brownsers.

If sombody have another solution for 1.5.5.1, i like hear it to.

Regards