Hi sleepyg1973,
welcome on CMS made simple

...
sleepyg1973 wrote:
i'd like to use different fonts other than the standard onese supplied when you install cmsmadesimple through fckeditorx. can anyone tell me if this is possible
The answer is not so easy cause existing operating systems have not the same default system fonts. But you can only show a font on your homepage which is installed on homepage visitors computer.
The first option to use other fonts for headlines and menu entries is using the truetype module
http://dev.cmsmadesimple.org/projects/truetypetext/
All chars will be transformed to a picture - but I think that's not an option for longer text.
The second option is the including of some generic fonts in css stylesheet, e.g.
font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
not only
font-family: Helvetica;
so layout of your page will be not destroyed if a visitor haven't install your page default font on his computer.
The last (exotic) option only for with CSS2 compatible browsers is to import a font file like
@font-face { font-family:Kino; src:local(Kino MT), url(kino.ttf) format(TrueType); }
It's not for real use now cause there are not very much CSS2 compatible browsers

.