Menu toggle in Ixion theme

  • Unknown's avatar

    I need some help moving the menu toggle in the Ixion theme for the mobile view. The toggle is on top of the logo I have placed on my site, blocking half of it from view. I figured out how to add a media tag to cause the logo not to show up so that it wasn’t being blocked. However, somehow the code I was using also caused the menu button to move almost out of sight – which simply created another problem. I would like a way that my entire logo can be seen with my menu navigation button operational as well. Hopefully, this is possible!

    The blog I need help with is: (visible only to logged in users)

  • Hi

    Give this a try. We are going to add some padding to the top of the branding container (which contains the logo) and specifically tell it only to apply at smaller screens using media queries.

    .branding-container {
        padding-top: 50px;
    }
    
    @media screen and (min-width: 50em)
    .branding-container {
        padding-top: 0;
    }

    Let me know how this works for you.

  • Unknown's avatar

    Thank you, this seemed to do the trick! I had to up the padding to 75 px and now the entire logo can be seen.

  • The topic ‘Menu toggle in Ixion theme’ is closed to new replies.