Site logo

Archived topic

Content page overlapping secondary menu on desktop view.

3 replies · Started by raul on May 10, 2021

Viewing posts 1–4 of 4

Hello is there a way to offset the content page from the secondary menu on desktop view. The container seems to be overlapping on the secondary menu on desktop view only and seems like it will be affecting other pages I am going to be creating.

Hi there,

you have this CSS added to your site ( most likely in Customizer > Additional CSS ), maybe a left over from another Site Import:

@media (min-width: 769px) {
    body:not(.home) .inside-article, .sidebar .widget, .separate-containers .comments-area {
        box-shadow:0 0 20px rgba(0, 0, 0, .07)
    }

    body:not(.home):not(.woocommerce) .site.container {
        margin-top:-40px
    }
}

You need to remove this part of that CSS:

body:not(.home):not(.woocommerce) .site.container {
    margin-top:-40px
}

thank you. worked perfectly.

You're welcome

This archived topic is closed to new replies.