Screenshot of product description text with text light colored on a dark background, and a hyperlink in golden yellow text.

How to change the color of in-text links

Shopify color themes don't provide the option to designate a different color for hyperlinks (or visited hyperlinks) within text. You can attempt these edits by editing your site's code, however I ran into difficulty targeting the specific types of links I wanted versus changing ALL hyperlinks on my site.

If you are struggling to change the color of links only in the text body on your website, you should instead target specific sections using the "Custom CSS" options in your store customizer.

First, open the "Customize" view of your site.

Screenshot of the main Online Store landing page on shopify, with an oval and arrow indicating the "Themes" page, and another oval and circle highlighting the "Customize" button on the right side of the screen.
Screenshot of the side menu in the "customize" view, on a Default Product page. The part of the template "product information" is selected.

Navigate to the page where you wish to change link colors. I wanted to make links a different color in my product and blog article pages. ⚠️ Note: if you have created multiple templates for these pages, don't forget to make this edit to each template.

Select the main section you want to edit in the side-menu. E.g. for product descriptions, click the "Product Information" section, not the "Description" sub-section.

Scroll to the bottom to find the "Custom CSS" option. Expand this section like below—you'll be entering your code here!

Screenshot of side menu in 'customize' view, with Custom CSS right under Theme Settings. The Custom CSS option is expanded with code entered: a {   color: #e49c24 !important; } a:visited {   color: #edd37c !important; } a:hover {   color: #ffffff !important; }

Copy and paste in the following, substituting your preferred color for #000000.

a {
color: #000000 !important;
}
a:visited {
color: #000000 !important;
}
a:hover {
color: #000000 !important;
}


a = hyperlink

a:visited = hyperlink after it has been visited

a:hover = hyperlink while hovering

 

Visit the CSS Styling Links guide for additional customizable formatting and options like adding a background (highlight) color.

The edits I added resulted in the change seen below. 

Before and after screenshots of a product description with in-text links. In the first image, the links are the same color as the text but underlined. In the second image, the links are yellow and underlined
Back to blog