Hello,
Here’s my website : https://www.lothaire.fr/
How could I please get the Header main categories (the ones you see before you click the categories) bold ?
A user seeks to make the main navigation categories in their Shopify Impulse theme header bold.
Initial Confusion:
Proposed Solutions:
.header-item header-item--navigation text-center {
font-weight: 800 !important;
}
Status:
The discussion remains open with no confirmation from the original poster about whether the final CSS solution successfully resolved the issue.
Hello,
Here’s my website : https://www.lothaire.fr/
How could I please get the Header main categories (the ones you see before you click the categories) bold ?
Hi
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi LothaireBordeau
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file
span.collection-item__title.collection-item__title--overlaid-box.collection-item__title--heading.collection-item__title--center span {
font-weight: 600 !important;
}
Result:
Best,
Liz
Hey, that’s actually great because these do look better in blod but I was taking about the text in the screencap. Sorry if I was unclear
Hello @LothaireBordeau ,
Here is the code that you can apply to make the category names in the header of the Shopify Impulse theme bold; you can add custom CSS targeting the navigation links in your file like theme.css, styles.css, or base.css:
.header-item header-item--navigation text-center {
font-weight: 800 !important;
}
Hello @LothaireBordeau ,
Here is the code that you can apply to make the category names in the header of the Shopify Impulse theme bold; you can add custom CSS targeting the navigation links in your file like theme.css, styles.css, or base.css:
.header-item header-item--navigation text-center {
font-weight: 800 !important;
}