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

    Hi. I have built an online ordering menu for a restaurant using Enfold and everything works great! I am using mobile detection to redirect to a specific page menu page and have a question.

    is there a way to remove the cart icon at the top of screen when either:

    1. viewing that specific mobile phone only page or
    2. when accessed by a mobile phone browser (when width is less than 768px)

    #348429

    Hey MindSpark!

    Try adding this to your custom CSS.

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

    Regards,
    Elliott

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