Convert Plus top bar blocking menu on scroll

Hi,
I was testing out a top bar from the Convert Plus plugin on my site and just noticed that when you scroll down the bar blocks my menu. Can you tell me if there is an easy way to fix this.

My site is jeanetteleblanc.com

Hi @jeanetteleblanc,

Thanks for reaching out.

Sure, it’s perfectly doable. Please add this CSS to your Theme Options > CSS

    .cp-ib-open .x-root {
        margin-top: 102px !important;
    }
    @media ( max-width: 670px ) {
        .cp-ib-open .x-root {
        	margin-top: 166px !important;
    	} 
    }

Hope this helps :slight_smile:

Hmmmm still seems to be functioning the same way

Hi @jeanetteleblanc,

Please change that CSS to this

.cp-ib-open .x-root {
margin-top: 102px !important;
}
.cp-ib-open .x-navbar-fixed-top {
top: 79px;
}
@media ( max-width: 670px ) {
.cp-ib-open .x-root {
margin-top: 166px !important;
} 
.cp-ib-open .x-navbar-fixed-top {
top: 166px;
}
}

Thanks!

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