Hi I want to change size of that text in footer store wrozbaela.pl
Topic summary
A user seeks to reduce the footer text size on their Shopify store (wrozbaela.pl), initially visible in a mobile screenshot.
Initial Solutions Attempted:
- First suggestion to add CSS to
base.csstargeting.footer-block__headingdid not work - Issue identified: user accidentally removed a closing bracket
}when implementing the code
Working Solution:
- Code added to
theme.liquidfile (above</body>tag) successfully reduced mobile footer text size - User then requested desktop compatibility as well
Final Recommendations:
- Multiple contributors provided responsive CSS targeting
h2.footer-block__heading.inline-richtext - Solutions include media queries for both mobile (max-width: 767px) and desktop (min-width: 768px) with adjustable font sizes
- Code to be placed in
base.cssfile
Status: Issue resolved for mobile; desktop solution provided but not yet confirmed as implemented.
@Kris778 please add this css to the very end of your base.css file and check,
Shopify Admin β Online Store ->Theme β Edit code β base.css
.footer-block__heading {font-size: 12px !important;}
it didnt work sadly
Hey @Kris778
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
RESULT:
If I managed to help then, donβt forget to Like it and Mark it as Solution!
Best Regards,
Moeed
@Kris778 you removed one closing bracket } by mistake, so before my give css please put closing bracket } on previous line
okay it works thanks can i do that also on desktop not only on mobile?
Hello @Kris778
Try this css.
@media screen and (max-width: 767px) {
h2.footer-block__heading.inline-richtext {
font-size: 11px !important;
}
}
@media screen and (min-width: 768px) {
h2.footer-block__heading.inline-richtext {
font-size: 24px !important;
}
}
Please add below css code at the bottom of base.css file
@media screen and (max-width: 767px) {
h2.footer-block__heading.inline-richtext {
font-size: 12px !important;
}
}
Thank you.

