I want the “subscribe here” text above the email box to be in bold. How to do this?
Topic summary
A Shopify store owner wants to make “subscribe here” text above an email subscription box appear in bold.
Solutions provided:
-
Farouk-dev’s approach: Add CSS code to the theme’s
section-footer.cssfile targeting.footer-block__newsletter .footer-block__headingwithfont-weight: 1000andfont-size: 36pxfor better visibility. -
GemPages team’s method: Insert custom markup code before the
</head>tag in the theme.liquid file.
Issue encountered:
The initial solution worked on desktop but didn’t display on mobile devices.
Final resolution:
Farouk-dev provided updated CSS with !important flags to ensure the styling applies across both mobile and desktop versions. The store owner confirmed this solution worked and marked it as accepted.
Hey @suoshie ,
To see a significant change, you may want to increase the font size as well.
Here, I’ve made the font bolder and increased the font-size to make it noticeable. Play around with the font-size…
Go to Online Store-> Theme->Edit code-> Asset-> section-footer.css ->paste the below code at the bottom of the file.
@media screen and (min-width: 990px){
.footer-block__newsletter .footer-block__heading{
font-size: 36px;
font-weight: 1000;
}
}
Hello @suoshie ,
It’s GemPages support team and glad to support you today.
I would like to give you a recommendation to support you so kindly follow steps below:
- Go to Online Store > Theme > Edit code of your current theme
-
Open your theme.liquid theme file
-
Paste the below code before
Let us know how it works for you.
Best regards,
GemPages Support Team
It works nicely thanks!
actually it dosent show on mobile how to fix it?
Hi it works but it dosent show on mobile version, can you tell me how to make it show on mobile?
Hey @suoshie ,
Replace previous styles with this. Should work on both mobile and desktop…
.footer-block__newsletter .footer-block__heading{
font-size: 36px !important;
font-weight: 1000 !important;
}
accepted solution thanks c:

