Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #762472
    #763092

    I figure out how to remove the Sort drop-downs.

    For anyone wishing to do so, I accomplished it like this:

    /*Remove Sort & Display drop-downs from Shop page*/
    div .product-sorting {display: none;}
    }

    I would still like to know how to hide my logo on the Shop Page. – Thanks

    #763141

    Hi,

    Thanks for sharing that. Please try the following in Quick CSS under Enfold->General Styling to hide your logo on WooCommerce pages:

    .woocommerce strong.logo {
      display:none !important;
    }

    Best regards,
    Rikard

    #763192

    Unfortunately that didn’t work. I cleared the cache and refreshed a couple of times to make sure.

    I only want to hide the logo on mobile on the WooCommerce Shop page

    Thanks so much.

    #763200

    Hi!

    You have to use the code Rikard justed as following

    @media screen and (min-width: 320px) and (max-width:568px) {
    .woocommerce .logo {
      display:none !important;
    }
     }

    Read more regarding media queries

    Best regards,
    Basilis

    #763240

    Unfortunately, that didn’t work either for some reason. Any other suggestions?

    #763268

    Hi,
    I looked at your General Styling > Quick CSS field, and you had a few extra } and also missing the last } to make the code above work. You should find it working now :)

    Best regards,
    Mike

    #763294

    That’s exactly what I needed. Thanks so much for your help!

    This topic can be closed.

    #763354

    Hey!

    Happy we can help.
    Feel free to create a new ticket if you need anything else.

    Thank you

    Cheers!
    Basilis

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