CSS is an easy and quick way to change the style stuff on a layout because all your style info you need to change (eg. fonts, colours scrollbars etc.) is on one page. Here is the stuff you need on that page;
A:link{color:COLOR;text-decoration:none}
A:visited{color:COLOR;text-decoration:none}
A:active{color:COLOR;text-decoration:none}
A:hover{color:COLOR;text-decoration:none;}
b {font-family:FONT;
color: COLOR;}
body
{ background-color:COLOR;
font-family: FONT;
color: COLOR;
cursor:ne-resize;
letter-spacing: 0pt;
font-weight: normal;
font-size: NUMBERpt;
text-align:center;
body direction:rtl;
scrollbar-face-color: COLOR;
scrollbar-arrow-color: COLOR;
scrollbar-track-color: COLOR;
scrollbar-3dlight-color: COLOR;
scrollbar-highlight-color: COLOR;
scrollbar-shadow-color: COLOR;
scrollbar-darkshadow-color: COLOR;}
input, textarea
{ background: COLOR;
font-family: FONT;
color: COLOR;
letter-spacing: 0pt;
font-weight: normal;
font-size: NUMBERpt;
border-style: solid;
border-color: COLOR;
border-width: NUMBERpx; }
Copy and paste this into notepad and safe it as css.css
Change the stuff thats in capitals. Read my other css pages to make your css looker better.
Remember to put this;
on all the pages you want the css to appear on.