Hi there!
This snippet should disable text decoration throughout the store:
/* Remove text-decoration */
a {
text-decoration: none !important;
}
Please navigate to Dashboard > Appearance > Customize > Additional CSS, add the above snippet and then click on Publish
button to save changes.
Thanks for the reply @aashik!
Question, when you say “text-decoration” does this mean remove just the underline from links in post content, footer, and breadcrumbs? Or will it remove all formatting?
I would test it myself but I am avoiding updating until I determine a solution. 🙂
Thanks for your time.
-
This reply was modified 1 year, 8 months ago by
sasquatchms.
Hi there!
Question, when you say “text-decoration” does this mean remove just the underline from links in post content, footer, and breadcrumbs? Or will it remove all formatting?
The snippet above would remove formatting on all the links in your site.
If you only want this applied to post-content, footer, and breadcrumbs, you can use the following snippet instead:
.woocommerce-breadcrumb a, .site-footer a, .entry-content a {
text-decoration: none !important;
}
Thanks, but to clarify, does this remove all formatting or just the new underlining that was introduced in Storefront version 2.4.4?