<em>@jprater1209 117137 wrote:</em><blockquote> A template that uses both serif and sans-serif fonts..</blockquote>
In any JA template…
template.css or the particular css file that is there for each theme, in the separated theme folders:
body {
font-family: Arial, Helvetica, sans-serif; <---- PLACE YOUR DESIRED FONT HERE
}
Use the same code:
font-family: Arial, Helvetica, sans-serif; <---- PLACE YOUR DESIRED FONT HERE
And place it in any CSS Code you like to give parts of your sites a variety of font styles.
Example, the text in the active parts of a menu shall have custom font Trebuchet MS and the rest of the site is Arial, then you add the red part to it replacing e.g. the default Arial
#active_menu {
background: url(../images/arrow.png) no-repeat 5px 8px;
color: ffcc33;
font-family: Trebuchet MS;
text-align:left;
}
Same you can do with using serif and sans-serif fonts wherever you like in your site.
Much fun with it!