Archived topic
Remove URL color/underline on Woocommerce Shop page
6 replies · Started by Stefanie on December 14, 2022
Hi - I'd like to remove the hyperlink underline and brown color from the links in ONLY in my Left Sidebar that is displayed on my Woo Shop Page here: https://www.littlemoonpapercompany.com/store/
Could you provide the css for that?
Thank you,
Stefanie
Hi - Just checking in for any update?
Thank you,
Stefanie
Hi Stefanie,
Your topic slipped through our support system, sorry about that.
You can try this CSS:
.post-type-archive-product #left-sidebar a {
text-decoration: none;
}
No problem - and thank you!
It looks like it's applied on the main shop page. Could I get it to apply on the category pages as well? like this one: https://www.littlemoonpapercompany.com/product-category/early-learning-activities/
Basically anywhere left sidebar is used
Basically anywhere left sidebar is used
If that's the case, you can simplify the CSS to:
#left-sidebar a {
text-decoration: none;
}
Perfect!! Thank you
You are welcome :)