Frumppage using CSS classes instead of a squillion <font> tags, what is the world coming to?
Like Wullie says, this is a CSS instruction. To find (and/or change) how it's defined, look in the <head> of your document. You should hopefully find a line something like
[tt]
<link rel="stylesheet" type="text/css" href="somefile.css">
[/tt]
which identifies an external stylesheet file that contains all your CSS definitions. Since it's C*ntPage, however, they're probably defined inline at the head of each page like this:
[tt]
<style>
.msoNormal { font-size: 10pt; }
.msoBig { font-size: 20pt; }
</style>
[/tt]
Once you've found it, you can change the properties of msoNormal to include all sorts of things. Font size is a tricky issue, I advise you to use one of the "named" font sizes - but see
for a work-around you'll need for IE5.
With fonts, there's no reason why you shouldn't specify whatever font you like - provided you offer alternatives. The font-family command can specify a series of fonts, like this:
[tt]
.msoNormal { font-family: "Footlight MT Light", Arial, Helvetica, sans-serif }
[/tt]
The browser works it's way down the list until it finds one that's installed on the client machine. The last choice is a generic font (others are: serif, cursive, fantasy and monospace) which tells the browser to use it's default sans serif font.
If you really want people to see the page in your choice of font, try embedding it (see faq215-4042 ). It only works in IE, unfortunately, but it's kinda neat.
I'd strongly advise you to learn more about hand-coding HTML, it doesn't take long to learn the basics.
is a good learning and reference site popular on this forum. New, and perhaps less daunting for the beginner, is
.
-- Chris Hunt