How can I change my product title link color to black on a specific page?

So i have made a page using shogun and i have made my collection page, but shopify makes the product titles blue because they are links what is some code to change the titles to black? Only on this page though.

theme:Dawn

Website:desire-online.net

Hi @jakegrieveson

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.shg-row a {
    color: black !important;
}

Hi @jakegrieveson

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

a span[data-shg-product-target=“product-title”] {

color: black !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

This did not work

This did not work