Hello! Iām trying to make the collapsible tabs names in bold. Could you please advise, what in a code I need to change. Thank you
my website is: https://www.slopesandtown.com/nl/products/recycled-belt-light-grey
Thank you
A user seeks help making collapsible tab titles bold in their Shopify product descriptions. Multiple developers provide nearly identical CSS solutions:
Recommended approach:
CSS code variations provided:
Most responses suggest targeting .toggle__title or .toggle span.toggle__title with font-weight: bold (some include !important for specificity).
All six respondents offer the same general solution with minor syntax differences. The discussion remains technical and focused on implementation, with no follow-up from the original poster indicating whether the solution worked.
Hello! Iām trying to make the collapsible tabs names in bold. Could you please advise, what in a code I need to change. Thank you
my website is: https://www.slopesandtown.com/nl/products/recycled-belt-light-grey
Thank you
Hello @Irene5
Its Artzen Technologies! We will be happy to help you today.
You can try to follow these steps:
Go to Online Store ā Themes ā Actions ā Edit code.
Go Assets folder ā theme.liquid file.
Add the following code in the bottom of the file above tag
Let me know if need further assistance
Regards,
Artzen Technologies
Hello There,
.toggle__title {
font-weight: bold;
}
Hi @Irene5
You can do that by adding this code at the bottom of your theme.css or theme.css.liquid file in Online store > Themes > Edit code > Assets
.toggle .toggle__title { font-weight: 700 !important; }
Hi @Irene5 ,
This is Anthony from Beae Landing Page Builder, and Iām happy to assist you today.
While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:
Best regards,
Anthony
Hello @Irene5
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.
.toggle span.toggle__title {
font-weight: bold !important;
}