[Support request] Mobile Menu Merging with Content Title

Home Forums Support [Support request] Mobile Menu Merging with Content Title

Home Forums Support Mobile Menu Merging with Content Title

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1041810
    24xstudio

    Hey,

    Whenever someone opens the mobile menu it merges with the title of the content. Just check the URL on the mobile version.

    #1041823
    Leo
    Staff
    Customer Support

    Hi there,

    Any specific reason you are using a merged header element for that page?

    Let me know 🙂

    #1041905
    24xstudio

    It because if I don’t merge it then it looks like this: https://prnt.sc/pmw3zx

    #1041909
    Leo
    Staff
    Customer Support

    That should be pretty easy to fix without merging.

    Can you disable the merged header element and let me have a look?

    #1041911
    24xstudio

    Done.

    But I need to do this on posts only.

    #1042024
    David
    Staff
    Customer Support

    Hi there,

    just need to remove the top padding from the site-content on the single posts like so:

    .single-post .site-content {
        padding-top: 0;
    }
    #1042072
    24xstudio

    What if I want this option in pages also?

    #1042083
    David
    Staff
    Customer Support

    Can either target the specifically like the CSS above, or alternatively you can use negative margins on the top Kadence row with this CSS:

    .wp-block-kadence-rowlayout.topcont {
        margin-top: -40px;
    }
    @media(max-width: 768px) {
        .wp-block-kadence-rowlayout.topcont {
            margin-top: -30px;
        }
    }
    #1042089
    24xstudio

    The second CSS for pages is not working for me.

    The first one for the posts is working fine!

    #1042166
    David
    Staff
    Customer Support

    I just looked at your About page, looks like you have already added a negative top margin to the Kadence Row (?) – you don’t need to do that and the CSS i provided.

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.