Tagged: Hide, hide logo, shop, woocommerce
-
AuthorPosts
-
March 17, 2017 at 1:27 pm #762472
I’ve been looking and looking but I can’t seem to find a topic that covers this. My apologies if I missed it.
I would like to hide my logo on my WooCommerce Shop page for mobile only. The shop page is located here: http://www.reachforserenity.com/shop/
Also, I would like to hide the “Sort by Default Order” and “Display x Products per page” drop-downs on mobile.
Thanks for any assistance that you can provide.
- This topic was modified 7 years, 8 months ago by tombstone66.
March 19, 2017 at 7:06 am #763092I 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
March 19, 2017 at 8:52 am #763141Hi,
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,
RikardMarch 19, 2017 at 2:23 pm #763192Unfortunately 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.
March 19, 2017 at 2:43 pm #763200Hi!
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,
BasilisMarch 19, 2017 at 4:56 pm #763240Unfortunately, that didn’t work either for some reason. Any other suggestions?
March 19, 2017 at 6:23 pm #763268Hi,
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,
MikeMarch 19, 2017 at 7:31 pm #763294That’s exactly what I needed. Thanks so much for your help!
This topic can be closed.
March 19, 2017 at 10:22 pm #763354Hey!
Happy we can help.
Feel free to create a new ticket if you need anything else.Thank you
Cheers!
Basilis -
AuthorPosts
- You must be logged in to reply to this topic.