Viewing 4 replies - 1 through 4 (of 4 total)
  • 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.

    Thread Starter sasquatchms

    (@sasquatchms)

    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 5 years, 4 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;
    }
    Thread Starter sasquatchms

    (@sasquatchms)

    Thanks, but to clarify, does this remove all formatting or just the new underlining that was introduced in Storefront version 2.4.4?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to disable “Underline links in post content, footer, and breadcrumbs”’ is closed to new replies.