Using the HTML/CSS editor to change header colour

Hi all,

Have the Paris Business theme, using the HTML/CSS editor I've managed to change a few things but the black header at the top of the theme where the menu bar is, I'm finding it impossible to change it from black to white.

I've tried changing all the black hex codes but with no luck at all.

If anyone could give me a hand I'd much appreciate it,

Thanks.

3,632 Views
Message 1 of 3
Report
2 REPLIES 2

Its pretty straightforward - go to Main style CSS and go down to the CSS class called

.paris-header

and then scroll though the list of CSS styles in this class until you find

background: rgba(0, 0, 0, 0.9);

This is the bit that makes the navigation bar at the top black. Notice that you are using rgb codes, so...

background: rgba(255, 255, 255, 0.9);

Will be white. The 0.9 is the opacity of the header, i.e. it is 90% opaque. 

Hope that helps (",)

Mark

3,625 Views
Message 2 of 3
Report

Mark do you know for Kiko. i need the navigation header to change to another colour or even transparent would be great.

2,937 Views
Message 4 of 3
Report