Hello Everyone!
I have added the collection tab through coding. But I see two fonts here. I want to keep the “Americana” font. Is it possible? Please help me. Thank you.
Store: https://dream-candle-lights.myshopify.com/
Password: Admin
Hello Everyone!
I have added the collection tab through coding. But I see two fonts here. I want to keep the “Americana” font. Is it possible? Please help me. Thank you.
Store: https://dream-candle-lights.myshopify.com/
Password: Admin
Please add this CSS code to do that
#tabs .card-information,
#tabs .tabs.ui-tabs .ui-tabs-nav li p {
font-family: Americana, serif !important;
}
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for “theme.liquid” file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for tag and add the following code above tag: https://prnt.sc/KWtKYyZkDtYJ
Here is the code for Step 3:
{% style %}
.card.card--card * {
font-family: 'Americana' !important;
}
{% endstyle %}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.
Thank you. Where should I paste the code?
Please add code to Custom CSS of in Online Store > Themes > Customize > Theme settings
Also, please update the code
#tabs .card-information,
.tabs.ui-tabs .ui-tabs-nav li p {
font-family: Americana, serif !important;
}
I edited on the collection page but I don’t see the red circled part like the picture you sent.
Thank you very much. It worked. Also, can the text of the View All button be changed?
Please update the code
#tabs .card-information,
.tabs.ui-tabs .ui-tabs-nav li p,
#tabs a.button {
font-family: Americana, serif !important;
}
Perfect. Thank you so much.
You are very welcome!
Please update the code
#tabs * {
font-family: Americana, serif !important;
}
Yes, it’s possible using hard code CSS by applying the font-family to a class. However, I recommend using dynamic settings instead. I can add a font picker to the theme settings, allowing you to update the font anytime you want. Feel free to contact me if you need assistance.