Hey there alyona,
If you are referring to this part http://screencast.com/t/YMyTSrx8Bnt. This in an image which can be changed in Appearance >> Header. You can upload your own image.
If you are referring to this part http://screencast.com/t/UtllNR7x it can be changed by adding some custom CSS. The easiest way to do that, if your theme doesn’t already have custom CSS tab, would be to add it in your site using the following plugin
http://ww.wp.xz.cn/plugins/simple-custom-css
Once the plugin is installed and activated you can add this code to Appearance >> Custom CSS:
.navbar-inverse {
background-color: #222;
}
Replace the color hex value to the color of your choice.
Hope this helps 🙂
Best regards,
Bojan
Hi, thank you for such a good support.
Unfortunately the solution with the css code & the custom css plugin won´t work. Any idea?
Best greetings, alyona
Can you post a link to your site?
Hey there alyonarutzen,
Posting a link to your site would help a lot in providing the correct CSS code.
Best regards,
Bojan
Hey guys,
The site is on the localhost 🙁
Hey there alyonarutzen,
Adding !important should do the trick. Please replace the above code with this one:
.navbar-inverse {
background-color: #222 !important;
}
Don’t forget to replace the color hex value (this is the original one). Normally I wouldn’t suggest using !important but sometimes it is a necessary evil when trying to overwrite existing styles.
Best regards,
Bojan
Hey, very cool – it works!
Thank you so much!!!