How can I change the color of product title links to black on my 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

Hey @jakegrieveson

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @jakegrieveson

You can follow the following steps:

  1. Please go to the Online Store
  2. Then Edit Code
  3. Please find the theme.liquid file
  4. And add the following code in theme.liquid file above the tag

If this solution is worked, then please Like this and Mark this as accepted solution!

Laddi

Hi @jakegrieveson

You can do that by adding this code to Custom CSS of Shogun

.shg-product-title-component a { color: #000 !important; }

Hi [email removed],

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 the bottom of the file → Save

[data-shg-product-target="product-title"]{
color:black !important
}

Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Hello @jakegrieveson

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.shg-product-title-component a {
    color: #000 !important;
}