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

    Hello,

    I just finished developing a site and went live yesterday. For some reason the (WooCommerce) shopping cart icon is appearing on mobile devices, but hidden on the dev site.

    On the live site, I added the following CSS to hide it. It did not work.

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

    Live site: orangehalo.com
    Dev site: orangehalo.ryanflaherty.us

    Any help is appreciated!

    -Ryan

    #380614

    Hey rjflaherty!

    Thank you for using Enfold.

    Try to replace the code with this:

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

    Best regards,
    Ismael

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