Hello
i want to add my own fonts to theme font list to make me able change it easily .
thank you
|
|
Hi,
Unfortunately, this is not possible. Fonts in the dropdown list are only coming from Google fonts directory and at this moment cannot be expanded.
If you want to use some other custom type, you will need to use the technique described here:
http://support.themeburn.com/topic/font-face
We will help you if you have any troubles when integrating your font.
BR,
ThemeBurn team
|
|
Hello
i put my font in the following folder :
catalog/view/theme/BurnEngine/fonts /Yekan.eot
now how can i address it and add to my css ?
thank you
-
This reply was modified 2309 days ago by
mohammadne.
|
|
Hi,
EOT font type is used only for older versions of Internet Explorer (IE6-IE8) which are not supported by Technopolis. You should use WOFF or/and WOFF2 / TTF / SVG font type.
Here is the code that you need to add in your Custom Stylesheet Panel:
@font-face {
font-family: 'Yekan';
src: url('../../../catalog/view/theme/pavilion/font/Yekan.woff2') format('woff2'), /* Super Modern Browsers */
url('../../../catalog/view/theme/pavilion/font/Yekan.woff') format('woff'), /* Pretty Modern Browsers */
url('../../../catalog/view/theme/pavilion/font/Yekan.ttf') format('truetype'); /* Safari, Android, iOS */
}
BR,
ThemeBurn team
|
|
hi team, there doesn’t appear to be all Google Fonts available as listed here https://fonts.google.com/
Can you guide how to allow them. We are using Pavilion with OC.
|
|
Hi
anyone can tell me how I can use a google font as local?
I would like to serve it from local to improve performance.
Thank you
|
|