[Resolved] Logo in canvas menu

Home Forums Support [Resolved] Logo in canvas menu

Home Forums Support Logo in canvas menu

Viewing 11 posts - 16 through 26 (of 26 total)
  • Author
    Posts
  • #1529621
    David
    Staff
    Customer Support

    You’re welcome – glad to be of help

    #1573782
    _blank

    Hello, is it possible that the code broke? Since some days the hamburger menu is again in the middle in front of the photo.
    Could you help me again? thank you SO much 🙂
    Best wishes
    Hannah

    #1573824
    Elvin
    Staff
    Customer Support

    Hi,

    I’m not sure I see the issue.

    Here’s how it looks like on my end: https://share.getcloudapp.com/xQuYnKpy

    Can you try clearing site and browser cache to check if it still occurs on your end?

    Let us know.

    #1573904
    _blank

    The issue occurs as soon as you start scrolling.
    Thanks a lot for your help 🙂

    #1573969
    Elvin
    Staff
    Customer Support

    You can try adding this CSS:

    media(max-width:768px){
    #mobile-header.navigation-stick .menu-toggle {
        order: 0;
    }
    }
    #1573975
    _blank

    Thank you. Unfortunately this removed the sticky menu. Can we solve this?

    #1574024
    Elvin
    Staff
    Customer Support

    Thank you. Unfortunately this removed the sticky menu. Can we solve this?

    Ah my bad. I forgot to include the .navigation-stick selector. I’ve fixed the code on the previous reply to work properly.

    Here’s a demo of it on chrome devtool: https://share.getcloudapp.com/2Nu0EKzg

    #1574069
    _blank

    Unfortunately the problem is still occurring: https://prnt.sc/vzogw8

    With the CSS that you colluege gave me, I have the following now:

    .main-navigation.has-branding .menu-toggle {
    order: -1;
    margin-right: auto;
    }
    .mobile-header-navigation.is_stuck .menu-toggle {
       order: -1 !important;
    }
    .wof-wheel-standalone .wof-right {
    padding-left: 55px;
    }
    media(max-width:768px){
    #mobile-header.navigation-stick .menu-toggle {
    order: 0;
    }
    }

    #1574208
    David
    Staff
    Customer Support

    Hi Hannah,

    change this CSS:

    .main-navigation.has-branding .menu-toggle {
        order: -1;
        margin-right: auto;
    }

    to:

    .main-navigation.has-branding .menu-toggle,
    .main-navigation.has-sticky-branding.navigation-stick .menu-toggle {
        order: -1;
        margin-right: auto;
    }
    #1582379
    _blank

    Thank you so much 🙂 It now works 🙂

    #1582666
    David
    Staff
    Customer Support

    You’re welcome

Viewing 11 posts - 16 through 26 (of 26 total)
  • You must be logged in to reply to this topic.