Hi there, could you please help with the code to make these headings bold? and where to place it?
I’m using Pipeline theme
A user seeks help making collection headings bold in the Pipeline theme. Two solutions are provided:
Solution 1 (Moeed):
</body> tagSolution 2 (oscprofessional):
.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.
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:
Go to Online Store
Edit Code
Find theme.liquid file
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;
}