Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,
    can you send also the link to your website so we can give a look and provide some css code?

    Thread Starter brodward

    (@brodward)

    Hello
    I’m working on local, but this same problem is presented by the yith proteo demo as you can see in the attached image
    https://prnt.sc/1g5mPfcqssV3

    Thank you for your help

    Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hi there,
    the hamburger menu is in a fixed position (it stays still while you scroll the page). And this position is a CSS “Fixed” position hack, not following the screen resolution but positioning this icon at x pixels from the viewport bezels.
    If you want it positioned right after the widgets, like in mobile, you can add the following few lines of Additional CSS to your site Customize panel:

    @media (min-width: 600px) and (max-width: 991px) {
        button.menu-toggle {
            position: absolute;
        }
    }

    This will do the trick for you.
    Let me know if you need further on this and sorry for the delay

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to correct distance of login and cart icon in the header’ is closed to new replies.