The links to "share" and "back to blog" circled in white, text barely visible as dark grey on near-black, labeled "unreadable!"

"Share" and "back to blog" text won't change with theme colors

Shopify templates don't always allow color customization of all features. When I switched to a dark background, I found that the "share" and "back to blog" links became unreadable and were unresponsive to theme color changes.

Navigate to the Online Store/Themes page from your side-menu, and select the three-dots menu next to the "customize" button. Select "Edit code."

Screenshot of the main Online Store landing page on shopify, with an oval and arrow indicating the "Themes" page and the menu allowing more actions for your store theme. In that menu, "Edit code" is circled.

Now find your assets/base.css file (yours may have a different name)

Screenshot of the code directory, with the assets folder open and file 'base' selected

Scroll to the bottom of the file and copy-paste in the following:

.article-template__link, .share-button__button {color:#000000 !important;}

  • .article-template__link = "back to blog" link text
  • .share-button__button = "Share" link text
  • #000000 will make the text black; replace with your preferred color.

If you want to make these two different colors, use the following format instead:

.share-button__button {color: #FFFFFF !important;}
.article-template__link {color: #000000 !important;}

Save your file and reload the page to see results (it can take a minute or two sometimes!).

Before and after showing the text unreadable at first, a gray on dark gray. After the code edit, the "back to blog" text is golden and the "share" text is light gray

How to find this if your template is different

If you are using a different Shopify template, the same code should work but these elements may have different labels. First right-click the page in question and select "View Page Source."

Use ctrl + F to find these elements in the source. I looked for "Back to blog" first and found the code for the 'share' button just above. The exact code and line numbers will differ, but what you're looking for is the class associated with that feature, within that section of code.

<a href="/blogs/learn" class="article-template__link link animate-arrow">       <span class="icon-wrap"><svg   viewBox="0 0 14 10"   fill="none"   aria-hidden="true"   focusable="false"   class="icon icon-arrow"   xmlns="http://www.w3.org/2000/svg" >   <path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor"> </svg> </span>       Back to blog     </a>

^ The class for the Back to Blog link is "article-template__link"

v The class for the Share link is "share-button__button"

<path d="M1.625 8.125V10.2917C1.625 10.579 1.73914 10.8545 1.9423 11.0577C2.14547 11.2609 2.42102 11.375 2.70833 11.375H10.2917C10.579 11.375 10.8545 11.2609 11.0577 11.0577C11.2609 10.8545 11.375 10.579 11.375 10.2917V8.125" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>   <path fill-rule="evenodd" clip-rule="evenodd" d="M6.14775 1.27137C6.34301 1.0761 6.65959 1.0761 6.85485 1.27137L9.56319 3.9797C9.75845 4.17496 9.75845 4.49154 9.56319 4.6868C9.36793 4.88207 9.05135 4.88207 8.85609 4.6868L6.5013 2.33203L4.14652 4.6868C3.95126 4.88207 3.63468 4.88207 3.43942 4.6868C3.24415 4.49154 3.24415 4.17496 3.43942 3.9797L6.14775 1.27137Z" fill="currentColor"/>   <path fill-rule="evenodd" clip-rule="evenodd" d="M6.5 1.125C6.77614 1.125 7 1.34886 7 1.625V8.125C7 8.40114 6.77614 8.625 6.5 8.625C6.22386 8.625 6 8.40114 6 8.125V1.625C6 1.34886 6.22386 1.125 6.5 1.125Z" fill="currentColor"/> </svg>      Share   </button>   <details id="Details-share-template--16733152837783__main">     <summary class="share-button__button">       <svg   width="13"   height="12"   viewBox="0 0 13 12"   class="icon icon-share"   fill="none"   xmlns="http://www.w3.org/2000/svg"   aria-hidden="true"   focusable="false" >

 

There may be several "classes," but they are somewhat self-explanatorily named—or you can test them until you find one that works. You will insert the same code at the end of your equivalent of the assets/base.css file.

Back to blog