Site logo

[Resolved] Menu on the top

Home Forums Support [Resolved] Menu on the top

Home Forums Support Menu on the top

Viewing 6 posts - 16 through 21 (of 21 total)
  • Author
    Posts
  • #2516434
    Jusung

    I found that my button is not visible on mobile.

    I gave po-submenu(class) and give padding to the buttons according to the device size.

    Is there a way to make all the button visible on mobile device?

    #2516451
    Fernando
    Customer Support

    Try static padding values.

    I also updated the code here: https://generatepress.com/forums/topic/menu-on-the-top/#post-2515123

    Can you try that?

    #2516500
    Jusung

    @media(max-width: 769px) {
    .po-submenu {
    padding:10px 15px 10px 15px;
    }
    .globalization {
    display: none;
    }
    }

    Like this.
    I want to hide the last button when it is mobile device.
    So, I gave globalization(class) to the last button and used this, but it doesn’t work.

    Could you help me to remove the last button on mobile device?

    #2516501
    Fernando
    Customer Support

    Try this instead:

    @media (max-width: 768px) {
        .po-submenu {
            padding:10px 15px 10px 15px;
        }
    
        body .gb-button.globalization {
            display: none;
        }
    }
    #2516619
    Jusung

    Thank you Fernando!!

    It has been settled!

    #2516674
    Fernando
    Customer Support

    You’re welcome, Jusung!

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