You seem to use CSS rather extensively on your site; I don't see why you'd be having a problem. However, to include an external stylesheet, you simply use this between the <head> and </head> tags:
Code:
<link rel="stylesheet" type="text/css" href="linkto/stylesheet.css" />
Within that stylesheet.css you would have something like this:
Code:
p { font-size : 12pt ; color : #ff0000 ; font-wieght : bold ; margin : 10px ; }
h1 { font-size : 20pt ; color : #0000ff ; font-weight : normal ; margin : 30px ; }
Just modify that and salt to taste and everything should work fine.
Bookmarks