Change Title Size of products on collection pages only - spotlight theme

Hi all,

I would like to increase the size of the product titles but only on the collection page. I believe the product title is too small to really read.

To see what I mean visit www.PPFMerch.com. You will have to enter the site password of abc123. Then click on a collection.

Id appreciate any help you can give.

Thank you!

-Justin

3 Likes

Hi @JSPENCER0203

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.collection .card__heading {
    font-size: 20px;
}

And Save.

result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Hi @JSPENCER0203 ,

Step 1: Go to Shopify Admin β†’ Online Store ->Theme β†’ Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:

{% if template.name == 'collection' %}

{% endif %}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

@JSPENCER0203 can you please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.card__heading a {font-size: 20px;}
1 Like

Worked perfectly. Thank you!