x

How to CSS code to change the color of the navigation text on one page

Dear,

I have 2 html/css questions.

On this page: http://zwerm.weebly.com/media-audio.html

I use a header were I've put 2 buttons that link to video/audio page. 

I've put these buttons in the header since the section below is a 'horizontal scrolling' section. If I would put the buttons there they would'nt stick at the centered place.

Now my questions:

1. How to CSS code to change the color of the navigation text into black on this page?

2. even if I edited the background color of this heather to white, on my site it stays a little grey. How to CSS code that color to white?

thanks!!

Toon Callier

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

Try adding this to that page's header code field in Pages > pagename > SEO Settings > Header Code:

<style>
	.nav .wsite-menu-item {
		color:black !important;
	}
	
	.wsite-header-section
	{
		background:#fff !important;
	}
</style>

If you want it to apply to the whole site just add it to Settings > SEO > Header Code instead.

1,598 Views
Message 2 of 3
Report

great, thanks, it works!

toon

1,555 Views
Message 3 of 3
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.