i did this and it worked:
.......................................................................................................................................................
Please go try these steps:
1. create folder "yekan" in your_site\templates\sj_hexagon\asset\fonts\
2. copy your font "yekan.ttf" in your_site\templates\sj_hexagon\asset\fonts\yekan\
2. create a yekan_font.css file in your_site\templates\sj_hexagon\asset\fonts\yekan\
3. copy code the below in yekan_font.css file:
@font-face {
font-family: 'yekan';
src: url('yekan.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
4. Then go to your_site\templates\sj_hexagon\includes\frame_inc.php and find:
$yt->ytStyleSheet('css/template.css');
$yt->ytStyleSheet('css/pattern.css');
$yt->ytStyleSheet('css/your_css.css');
=> Edit to:
$yt->ytStyleSheet('css/template.css');
$yt->ytStyleSheet('css/pattern.css');
$yt->ytStyleSheet('css/your_css.css');
$yt->ytStyleSheet('asset/fonts/yekan/yekan_font.css');
Then please go to templates/ your _temp/css/your_css.css and add the code:
body{
font-family: yekan !important;
}
.............................................................................................................................................................................
i found this in following address:
www.smartaddons.com/forum/275-general-questions/8648-steps-to-add-a-new-font-in-sj-template?limit=6&start=12
my site's font changed to yekan_font but it didnt add to ytframework --> typography
so i dont have the option to switch between fonts.
plz help me