When using External Cascading Style Sheets you will want to use a text editor like Notepad. Copy and paste the following and change all red text to your specifications and remove all blue text. In your HTML editor paste your modified version and label the page as css.css, or if you should decide to have more than one css file, label them appropriately.
On your web pages, (all or specific ones) place the following inbetween the
<link rel="stylesheet" type="text/css"
href="http://www.yourpage.com/css.css" />
BODY
The following code allows you to change the scrollbar colors to match your page colors, and only really works in Internet Explorer.
{scrollbar-arrow-color: #000000;
scrollbar-arrow-color:#000000;
scrollbar-face-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-shadow-color:#000000;
}
a:link { color: #000000; text-decoration: none }
a:active { color: #000000; text-decoration: none }
a:visited { color: #000000; text-decoration: none }
a:hover { color: #000000; text-decoration: none; background: #000000 if you add background here and change the color, it will highlight the link }
You can change any of the text-decoration: none to the following:
underline
overline
line-through
blink
body {background-color: #000000}
p
{
text-align: left;
color: #000000;
font-family: "arial" Here you can choose what font you want shown.
font-size: 100%
}
When using the class Selector, you can choose right, left or center. By putting the period before, you can now use it on paragraphs and headers.
.center {text-align: center;}
You can group selectors. Separate each selector with a comma.
h1,h2,h3,h4,h5
{
color: #000000;
font-family: arial
}
You can use either RGB colors or their HEX equivalents. I use my Paintshop program to find colors I like, then go into the edit colors option and find their RGB values, and either use that or go HERE to convert them to HEX values. When using RGB values, the code should look like this:
{background-color: rgb(255,255,255)}