Can Pro Theme do this?

I’d like my header to be black and then turn white… like this…

http://verobeach.marketing/news/local-marketing-101-for-businesses-new-and-old/

Hi There,

It’s possible with the custom CSS.

Please add the my-bar class to your header bar:

Also set the bar to be sticky:

After that add this custom CSS:

.x-bar.my-bar {
    transition: all ease-in 0.5s;
}
.x-bar.my-bar.x-bar-fixed {
    background-color: rgba(136, 131, 131, 0.75);
}

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.