Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #865896

    Hi! I would like to hide a menu item on desktop and tablet but display on iphone. This is the code I have but it is still showing on the iPad. Any help would be greatly appreciated.

    @media only screen and (min-width: 480px) {
    /* Add your Desktop Styles here */
    #menu-item-856 {
    display: none !important;
    }
    }

    #865906

    Hi,

    Currently menu items strip their menu ID’s on hamburger menu. Our devs are already aware of it and fix will be included in upcoming Enfold update, which is coming soon :)
    Sorry for the inconvenience!

    Best regards,
    Yigit

    #865923

    Thanks Yigit!

    #865924

    by the way what kind of menu you are using on tablet and pc ?
    i think you have the burger all the time ?
    if not it has to be done by your code

    if you got the burger allways you can do it
    by counting the menu points (don’t know what is your menu point – so change number

    @media only screen and (min-width: 480px) {
    #av-burger-menu-ul li:nth-child(3) {
        display: none !important;
    }
    }
    #865951

    Hi,

    Please see @Guenni007’s post above for temporary solution :)


    @Guenni007
    Thanks for your help :)

    Best regards,
    Yigit

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