Hi All, I am trying to add custom fonts to SCA sit...
# suitecommerce
k
Hi All, I am trying to add custom fonts to SCA site, but can’t find proper way to do. Can anyone help on how to add fonts to SCA theme?
m
The quickest approach is to simple add a
<link ... >
tag to shopping.ssp, checkout.ssp, and my_account.ssp and use a the Google Font API. Otherwise, this tutorial seems to be helpful.
g
Google fonts and adobe fonts also have an @import option, which you can just drop straight into a sass stylesheet in your theme or extension. Which means you don't have to edit the base SCA code. Looks a bit like this:
@import url('https://fonts.googleapis.com/css2?family=*Piazzolla:wght@100*&display=swap');
👍 1