I want to make the top_bar transparent. Which I know how. But when I scroll down the sticky header is also transparent. Is there a css or a different way to exclude the sticky header from becoming transparent. Just started working with this theme today.
Comments
you would have to use the :not css property, like this:
#Top_bar:not(.is-sticky) { background:red; }
So if the Top bar does not have the sticky class added, then it will be red.
thanks