I'm desperately trying to change the font color (to white) of "search..." text in my search-bar. But I only manage to change the input text. (see link: http://12hrs.net/blog/).
Hope you can help me
The php looks like this:
<?php
/************************************************************************
* Search Form
*************************************************************************/
?>
<div class="widget">
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search" class="search">
<input type="text" class="field" name="s" value="<?php echo esc_attr( get_search_query() ); ?>" id="s" placeholder="<?php esc_attr_e( 'Search …', 'framework' ); ?>" />
</form>
</div>
and css like this:
.search #s,.search #search{
background:url('../img/theme/search.png') 12px center no-repeat #e34b4b;
width: 100%;
padding-left: 40px;
color: white;
}