Hi, how do i make the text for my catalog page only, thicker. As in I want it to be bold. It all seems so thin and small. Picture:
Website: hostfashion.myshopify.com
Code: UDEIMARKEN
Goal: Make text on the catalog page (Shopify collection page) appear bold without affecting other pages.
Approach proposed: Edit theme.liquid and wrap page-specific CSS in a Liquid conditional that only loads on the collection template.
Key concept: Liquid is Shopify’s templating language; “template.name == ‘collection’” identifies catalog/collection pages so styles inside the block apply only there.
Status/Outcome:
Follow-up question: The user wants an exception so the rich text at the top is not bold, while other catalog text is.
Open items: Specific CSS selectors to apply bold to desired elements and exclude the top rich text remain unanswered.
Hi, how do i make the text for my catalog page only, thicker. As in I want it to be bold. It all seems so thin and small. Picture:
Website: hostfashion.myshopify.com
Code: UDEIMARKEN
Hi @HOST_1 ,
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' %}
{% end %}
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 ![]()
hi, thank you for you answer. i tried to copy your code above head tag, but it gave me following error:
@HOST_1 Oh sorry, This is new code:
{% if template.name == 'collection' %}
{% endif %}
perfect, thank you ![]()
i do have another question though. can I make an exception for this page? like I don’t want the rich text on the top to be bold, only everything but that. Like I mean this text:
Please welcome our first collection:
Silver Equinox.
With the consideration of the cold autumn breeze, we introduce heavy-weight garments, that will keep you warm the whole season round, and even so, keep you fashionable.
Hi @HOST_1 , Replace old code to this new code:
{% if template.name == 'collection' %}
{% endif %}
Hope this can help you ![]()