<em>@emendabo 50483 wrote:</em><blockquote>Isn’t there a possibility to change the font size or the font size in the css data?</blockquote>
If you want the default font size to increase/decrease across all instances, check lines 40 to 60 of template_css.css as follows…
body.fs1 {
font-size: 9px;
}
body.fs2{
font-size: 10px;
}
body.fs3{
font-size: 11px;
}
body.fs4{
font-size: 12px;
}
body.fs5{
font-size: 13px;
}
body.fs6{
font-size: 14px;
}
You can adjust all the above as required….
Then, you set which of the above 6 font size settings the template uses by default in index.php around line 62 as follows..
#font size default
$ja_font_size_default = 3;
So in the above version, the template uses body.fs3 by default which is 11px.:)
😉