Shopify themes, liquid, logos, and UX
I want to decrease the size of text in my footer on my website https://swawe.store/
Hello @swawestore
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-footer.css
@media screen and (min-width: 990px) {
.footer-block__heading {
font-size: 14px !important;
}
}
@media screen and (min-width: 750px) {
.footer-block__details-content .list-menu__item--link {
font-size: 10px !important;
}
}
.footer-block__image-wrapper img {
max-width: 85% !important;
}
.copyright__content {
font-size: 10px !important;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Hi @swawestore
Do you want to change all the text? Also, in mobile screen or only desktop?
Check this one.
@media screen and (min-width: 750px) {
.footer-block__details-content .list-menu__item--link {
font-size: 1.2rem !important;
}
}
@media screen and (min-width: 750px) {
.footer-block__heading {
font-size: 1.4rem;
}
}
Note: This is only for desktop.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
- Here is the solution for you @swawestore
- Please follow these steps:
- Then find the base.css file.
- Then add the following code at the end of the file and press 'Save' to save it.
@media screen and (min-width: 750px) {
.footer-block__heading {
font-size: 1.6rem !important;
}
.footer-block__details-content .list-menu__item--link {
font-size: 1.2rem !important;
}
}
- Here is the result you will achieve:
- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.
If our suggestions are useful, please let us know by giving it a like or marking it as a solution.
Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)
Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page
Hi @swawestore ,
To change the footer block headings and the links under it, you can use the CSS code provided below.You can adjust the font sizes to your requirements.
Go to your online store, then select Theme. Click Edit Code then under assets find 'section-footer.css' and paste the following code:
To change the heading font size:
for larger displays
@media screen and (min-width: 750px) {
.footer-block__heading{
font-size:14px!important;
}
}
for smaller displays
@media (max-width: 749px) {
.footer-block__heading{
font-size:12px!important;
}
}
To change the link's font size:
for larger displays
@media screen and (min-width: 750px) {
.footer-block__details-content .list-menu__item--link{
font-size:12px!important;
}
}
for smaller displays
@media (max-width: 749px) {
.footer-block__details-content .list-menu__item--link{
font-size:10px!important;
}
}
To change the copyright text font size:
.copyright_link .copyright__content{
font-size:9px;
}
Result:
I hope this helps! If it does, please like it and mark it as a solution!
Regards,
Sweans
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025