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
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
