Shopify themes, liquid, logos, and UX
How can I increase the font size of the heading on my Featured Collection on the homepage? Currently, the font is really small and hard to read. However, on the product page itself, its a lot larger. Any CSS tips or theme settings adjustments would be appreciated. Thanks!
Solved! Go to the solution
This is an accepted solution.
Hello @bagdonaviciusbm
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the bottom of the file.
.full-unstyled-link {
font-size: 22px !important;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
This is an accepted solution.
Hello @bagdonaviciusbm ,
I understand you are looking to increase Font Size of the Product Title in Featured Section
Please add the below code at the bottom of the theme.liquid file before </body> tag and save.
<style>
.card__information h3,h5 {
font-size: 30px !important;
}
</style>
[Please feel free to change the pixel size as per your needs.]
Output -:
I hope it helps.
Please share if you need any further assistance.
Thank you.
Hello @bagdonaviciusbm
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
.collection .card__information h3.card__heading.card__heading--placeholder.h5 a.full-unstyled-link{
font-size: 20px !important; /*adjust according to you*/
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
This is an accepted solution.
Hello @bagdonaviciusbm
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the bottom of the file.
.full-unstyled-link {
font-size: 22px !important;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
This is an accepted solution.
Hello @bagdonaviciusbm ,
I understand you are looking to increase Font Size of the Product Title in Featured Section
Please add the below code at the bottom of the theme.liquid file before </body> tag and save.
<style>
.card__information h3,h5 {
font-size: 30px !important;
}
</style>
[Please feel free to change the pixel size as per your needs.]
Output -:
I hope it helps.
Please share if you need any further assistance.
Thank you.
Hi there,
To increase the font size of the heading on your Featured Collection on your Shopify homepage, either adjust theme setting or add custom CSS.
Hope this would be of help!
If it’s helpful to you, please mark it as a solution.
Need Help with Shopify Speed Optimization and Any Custom Shopify tasks
email: task4store@mswebdesigner.com
Download Free Shopify Speed Optimization Guide book for 2024
HI @bagdonaviciusbm
You can follow this step to achieve your result
Go to online store->edit code->base.css file and past bellow code in bottom of the file
.full-unstyled-link {
font-size: 25px !important;
}
Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024The Hydrogen Visual Editor is now available to merchants in Shopify Editions | Summer '...
By JasonH Sep 2, 2024Note: Customizing your CSS requires some familiarity with CSS and HTML. Before you cust...
By JasonH Aug 12, 2024