Hi,
Sadly im not the best or even close to good at CSS.
I would like to request help with trying to add code to my custom CSS to make the box in this image
to be transparent like it is in this image allways even on scrolling.
To see it in effect goto website
and scroll down on the page to see the effect of it turning white.
Thanks in advance,
Thomas
CSS, Worpress CMS Custom CSS
Moderator: General Moderators
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: CSS, Worpress CMS Custom CSS
The problem seems to be that the white background is set in style .navigation-bar.fixto-fixed
(#10850)
Re: CSS, Worpress CMS Custom CSS
Thank you, I managed to find the correct one in the end.
Code that worked:
Code that worked:
Code: Select all
.navigation-bar.bordered.homepage.fixto-fixed {
background-color : transparent !important;
}