I am currently creating a Shopify store and having issues getting my branded Adobe typography onto the page. I have already added the fonts to theme.liquid and base.css.
There are a few places I cannot seem to get the appropriate CSS tag when adding in “Custom CSS”. Could anyone provide insight on how to change the fonts boxed in red in the below screenshots?
Hi @dianachaug
, hottake without being able to dig through the site the font-family etc CSS declarations should be in CSS selector rules.
i.e. body { font-family: …; }
Hi @dianachaug
You need to use correct css syntax for example:
.header {
font-family: 'industry-inc-base', sans-serif!important;
font-weight: 400;
font-style: normal
}
If you still have problems, please give me your store link and I will provide the appropriate css syntax for you.
Hope it helps @dianachaug