Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How can I change the font in the description which is using a product metafield to the original font for the theme (Daytona)
Font I would like is at the top with the red arrow pointing from it.
website: https://revtekautoparts.com/
Thank you in advance
Hey @revtekautoparts
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find password.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
.tabs-items-template--24091049558328__ss_product_tabs_2_rKB6x6 * {
font-family: 'Daytona' !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi Moeeed,
Didn't seem to work unfortunately.
Hi Revtekautoparts
- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file
.tabs-items-template--24091049558328__ss_product_tabs_2_rKB6x6 * {
font-family: 'Daytona' !important;
}
Result:
Best,
Esther
Didn't seem to work unfortunately.
Hi @revtekautoparts
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.tabs-item-template--24091049558328__ss_product_tabs_2_rKB6x6.active p span {
font-family: sans-serif !important;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! 🚀 (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!
That didn't work unfortunately.
Hello @revtekautoparts ,
Here are the steps to apply the necessary changes in your Shopify store:
.tabs-item-template--24091049558328__ss_product_tabs_2_rKB6x6.active p {
font-family: Daytona, sans-serif !important;
}
Let me know if you need further assistance!
Didn't work unfortunately.
Try this
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>
<style>
.section-template--24091049558328__ss_product_tabs_2_rKB6x6-settings .tabs-items-template--24091049558328__ss_product_tabs_2_rKB6x6 .tabs-item-template--24091049558328__ss_product_tabs_2_rKB6x6.active p span {
font-family: sans-serif !important;
}
</style>
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! 🚀 (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!