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)
Hey MindSpark!
Try adding this to your custom CSS.
@media only screen and (max-width: 767px) {
.cart_dropdown {
display: none !important;
}
}
Regards,
Elliott