Reply To: Sticky nav with effect, menu moves to right

Home Forums Support Sticky nav with effect, menu moves to right Reply To: Sticky nav with effect, menu moves to right

Home Forums Support Sticky nav with effect, menu moves to right Reply To: Sticky nav with effect, menu moves to right

#209281
Tom
Lead Developer
Lead Developer

I just adjusted the code in #4 above – had to make it a little more specific.

2. That code should be added by default – can you show me what you mean?

3. Ah, this is happening because it’s set to full height, so when the height is very small (on mobile for example), there’s not enough room in the page header area for all your content.

Try adjusting stuff for that screen size:

@media (max-width: 768px) {
    .inside-page-header .button.transparent-button {
        font-size: 17px;
    }
    .inside-page-header p {
        margin-bottom: 10px;
    }
    .inside-page-header h2 {
        font-size: 17px;
    }
}