Hi guys,
Am using Expanse theme. My footer content is small, I want to increase the font size. Could someone help me with the coding?
Thanks!
A user seeks help increasing the footer font size on the Expanse Shopify theme.
Solutions Provided:
Multiple developers offered CSS code snippets with slightly different approaches:
Option 1: Add CSS to overrides.css targeting .footer__title (18px) and .site-footer (17px), with separate mobile view adjustments using media queries
Option 2: Modify components.css to set footer links and titles to 20px font size
Option 3: Insert CSS code into theme.liquid file above the </head> tag
Implementation Steps:
All solutions follow similar paths:
Note: Some responses contain corrupted/reversed text, but the core CSS solutions remain intact. The discussion remains open with no confirmation of which solution the original poster implemented.
Hi guys,
Am using Expanse theme. My footer content is small, I want to increase the font size. Could someone help me with the coding?
Thanks!
Hello @Eze_Paul ,
Here is the code you can try. I hope it might be helpful
Go to the Online Store-> Theme-> Edit code-> Assets> overrides.css → Add code at the bottom.
.footer__title {
font-size: 18px;
line-height: normal;
}
.site-footer {
font-size: 17px;
line-height: normal;
}
And this for Mobile view :
Go to the Online Store-> Theme-> Edit code-> Assets> components.css → Add code at the bottom.
@media only screen and (max-width:768px){
.footer__title {
font-size: 18px;
line-height: normal;
}
.site-footer {
font-size: 17px;
line-height: normal;
}
}
Hello There,
.site-footer a {
font-size: 20px;
}
h2.footer__title {
font-size: 20px;
}
.footer__title {
font-size: 20px;
}
Hi @Eze_Paul
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Richard | PageFly