Are you referring to the text color of your menu – from grey to white?
If so, look to the following file –> /templates/ja_sulfur/css/colors/black.css … at line 498
<blockquote>/* CSS Menu */
#ja-cssmenu li a {
color: #757575;
}
</blockquote>
This is where you can change the font color to white – for example
<blockquote>/* CSS Menu */
#ja-cssmenu li a {
color: #FFFFFF;
}
</blockquote>
As for your “suche” heading . . . .
Same CSS file … at line 26
<blockquote>.inputbox, .replybox, .required, textarea, #activityLimit, #userInputLocation {
background: none repeat scroll 0 0 #000000 !important;
border: 1px solid #212121 !important;
color: #757575 !important;
}
</blockquote>
modify as follows:
<blockquote>.inputbox, .replybox, .required, textarea, #activityLimit, #userInputLocation {
background: none repeat scroll 0 0 #000000 !important;
border: 1px solid #212121 !important;
color: #FFF !important;
}
</blockquote>
Hope That Helps