• Resolved sunshineh

    (@sunshineh)


    Hi
    if I active the AMP menu, than I can see the menu also in my normal webpage in the header. In my normal view I have already my menu on the right. So I can see it twice and I want to deactivate it.
    But I want to see it in the mobile view.
    How can I do this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor ampforwp

    (@ampforwp)

    Hi @sunshineh,

    In the menu settings you will see the option of display location and in that, if you only enable the AMP menu option by unchecking the remaining options then that menu will only appear in AMP. Are you sure your menu look like this – http://take.ms/z1Q6X and still you are seeing the menu in non-amp version.

    Will you please provide us the exact URL of your issue? So that I will check once and let you know.

    Thread Starter sunshineh

    (@sunshineh)

    Thank you for your answer! I saw this point. But is it possible to use your menu only when the display size is smaller than 900px? I only need it active in the responsive view.

    Plugin Contributor ampforwp

    (@ampforwp)

    Hi @sunshineh,

    Currently, we don’t have that option but will you please try this css and paste in the global section of AMP panel like – http://take.ms/QD2De and check once.

    .h-nav {
    display: none;
    }
    @media only screen and (max-width: 600px) {
    .h-nav {
    display: block;
    }
    }

    Plugin Contributor ampforwp

    (@ampforwp)

    The above CSS will only work if you are using the swift theme only but if you have used other designs then let me know.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Menu only in responsive layout’ is closed to new replies.