Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #840049

    Hi, After reading many support post I could solve my issue but there is still something wrong.
    In the post http://ticketband.com.ar/metalizadas/ for example, I wanted to hide the menu in the header so i added CSS code
    .postid-385 nav.main_menu {
    display: none!important;
    }

    That took away the menu in big screens, but when I open the post in a small screen the menu still shows up, how can I hide in every size?
    Thanks

    #840137

    Hey sabrinapresman,

    Add this also to hide the menu on mobile:

    @media only screen and (max-width: 767px)  {
    .postid-385 #advanced_menu_toggle {
    display: none!important;
    }}

    Best regards,
    Jordan Shannon

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.