padfoot wrote:how can we change the font style to comic sans ms while still retaining the sol format. thanx!
In the "sol.css" file find the following line under the "@media screen{" section:
Code: Select all
p {text-align: left; font-family: Times, sans-serif;}
and change it to read:
Code: Select all
p {text-align: left; font-family: Comic Sans MS, Times, sans-serif;}
When font-family is defined it applies the fonts listed in order, so you should start with the most specific font and end with the generic font family's name. (I think the generic family's are Times, Serif, Sans-Serif, and Monospace.
http://www.w3.org is a great resource for all things x/html and css related.)
In this case if you change it to read comic sans ms first, then times, then sans-serif, and don't have the comic sans ms font installed on your computer then the Times family of fonts are applied. and if you didn't have any times family of fonts sans-serif fonts are applied/tried last. If none of those are found then I think the web browser/OS default is used.