I am facing an issue where I can’t make them headings at my footer
-
Terms and Cobditions
-
Newsletter
-
Footer
to be Bold
Can anyone share CSS format for booster theme. Page link https://zizerstore.com/
A user needs help making footer headings (Terms and Conditions, Newsletter, Footer) bold in the Booster theme.
Multiple solutions provided:
• Custom CSS via theme.liquid: Add CSS code in a <style> tag above the </body> tag in theme.liquid file
• Direct CSS file editing: Add CSS to base.css or theme.scss.css file in the Assets folder
Recommended CSS snippets:
.footer-site__linklist.footer_menu h5 { font-weight: bold; }.label h5 { font-weight: bold; }.footer-social-icons h5 { font-weight: bold; }.footer_title { font-weight: bold !important; }All solutions involve accessing the theme code through Shopify admin → Online Store → Themes → Edit code, then adding CSS targeting footer heading elements. The !important flag is suggested in some solutions to ensure the styling takes precedence.
I am facing an issue where I can’t make them headings at my footer
Terms and Cobditions
Newsletter
Footer
to be Bold
Can anyone share CSS format for booster theme. Page link https://zizerstore.com/
Hey @hunainkhan
Follow these Steps:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
HI @hunainkhan ,
Try this.
.footer_menu.site-footer__linklist h5 {
font-weight: bold;
}
label.h5 {
font-weight: bold;
}
.footer-social-icons h5 {
font-weight: bold;
}
Result:
I hope it help.
Hi @hunainkhan
This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Theme.scss.css
.footer_title{
font-weight: bold !important;
}
Hope you find my answer helpful!
Best regards,
Richard | PageFly
Hello @hunainkhan
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->theme.scss.css >Add this code at the bottom.
label.h5 {
font-weight: bold !important;
}