Pipeline theme, making collection headings bold

Topic summary

A user seeks help making collection headings bold in the Pipeline theme. Two solutions are provided:

Solution 1 (Moeed):

  • Navigate to Online Store → Edit Code → theme.liquid
  • Add custom CSS code above the </body> tag
  • Marked as the accepted solution

Solution 2 (oscprofessional):

  • Go to Online Store → Theme → Edit code → Assets → theme.css
  • Add CSS targeting .a.vanlink.vanlink--child span with font-weight: bold !important;

Both approaches use custom CSS to achieve bold formatting, with the first method placing code in theme.liquid and the second in the theme.css file. The discussion appears resolved with the first solution accepted.

Summarized with AI on November 18. AI used: claude-sonnet-4-5-20250929.

Hi there, could you please help with the code to make these headings bold? and where to place it?

I’m using Pipeline theme

Hey @Tony1992

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


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

Best Regards,
Moeed

Hello @Tony1992

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

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

a.navlink.navlink--child span {
    font-weight: bold !important;
}