- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
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.
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
great, thanks, it works!
toon