How do you add a new font to 2.2.3 Pro?

How do you add a new font to 2.2.3 Pro?

Did you tried this one - http://cs-cart-skins.iecsp.com/cs-cart-3-free-addons-google-webfonts.html … however it is for 3.x version but test it on your site…

Adding a font to your website is a CSS function.

You need to put the fonts into a directory and then call them in your CSS file.

In this example, the font is in a directory named “type” which is a sub-directory of the folder with the CSS file:



@font-face {

font-family: 'MyriadProLightRegular';

src: url('type/myriadpro-light-webfont.eot');

src: url('type/myriadpro-light-webfont.eot?#iefix') format('embedded-opentype'),

url('type/myriadpro-light-webfont.woff') format('woff'),

url('type/myriadpro-light-webfont.ttf') format('truetype'),

url('type/myriadpro-light-webfont.svg#MyriadProLightRegular') format('svg');

font-weight: normal;

font-style: normal;

}



I add this to the TOP of my CSS file.

I use the my_changes addon, so it's all inside the my_changes folder.