Quote:
|
Originally Posted by K.Shaw
thanks for the code but im not quite sure how to add it? someone please explain thanks 
|
Well, you could create a file called style.css to for the central css of your site. In it you could paste what I posted... and add other stuff as needed to define various things like table styles, links styles, etc.
In each html file or php file that you want to access the style.css file with, you need this in the html's <head> tag, linking to the css file as you would an image, etc. with its directory and file name:
Code:
<head>
<link href="style.css" type="text/css" rel="stylesheet">
</head>