Background Image zooms

Hello-
If you go to our page here:
https://infinity.care/

When scrolled all the way to the top the banner zooms in, then it zooms back out when you scroll down. How do I stop this from happening?

Hey There,

Add following CSS to Theme Options > CSS:

header.masthead-inline {
    position: fixed;
    top: 0px;
    z-index: 9;
    width: 100%;
}

This will make the topbar stay visible even when scrolling down.

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