::Scroll Bar & Text CSS Tutorial:: I decided for the sake of it all to share some more tutorials with you. More to come when I get my domain. For color scheming, and hex codes for colors go to the chart

::Scroll Bar::

Ok to have a pretty scroll bar like BRKN Mirror use this code on your site.

<style type="text/css">
<!--

body {
scrollbar-face-color: #000000;
scrollbar-highlight-color: #FFF5D3;
scrollbar-3dlight-color: #FFFAE9;
scrollbar-shadow-color: #E296B4;
scrollbar-darkshadow-color: #D585A5;
scrollbar-track-color: #FCEEF4;
scrollbar-arrow-color: #FFFFFF;
}
-->
</style>

::Text CSS::

Alright you wanna know how cool people get pretty cursors, hover links, and stuff like that here's how.

<style type="text/css">
<!--

body {
font-family: tahoma;
font-size: 10px;
color: #000000;
text-align: justify;
}
a { /* the following will affect your links only */
text-decoration: none;
color: #c0c0c0;
}
a:hover { /* the following will affect how your links look on mouseover */
text-decoration: none;
color: #ffffff;
cursor: crosshair;
}
-->
</style>

Anything in bold can be customized.

Possible Values
font-family: Any font you wish to use. Common fonts are verdana, arial, tahoma, times new roman, georgia and trebuchet ms.
font-size: Too many sizes to list. The most common are probably 10px, 11px and 12px. 7pt is the same as 10px, 8pt, is the same as 11px, etc.
color: Any color you want ;)
text-align: Aligns the text on your page to either the left, right, center or justify
text-decoration: none, underline, line-through.
cursor: Mouseover for examples: crosshair, ne-resize, n-resize, nw-resize, e-resize, w-resize, s-resize, se-resize, sw-resize, time, move, help, default, hand.

More CSS! xD
Random funnnn (xD) codes that go above or below the previous values:

letter-spacing: 1px;
line-height: 12px;
font-weight: bold;
font-variant: small-caps;

letter-spacing: Makes the space between letters bigger or smaller. Ex: letter-spacing: 1px;
line-height: Affects the space in between lines, ex:
line-height: 11px;
line-height: 11px;
line-height: 11px;

font-weight: Bold, italic or normal.
font-variant: Normal, small-caps

Your welcome!! Tutorials by pinkspikes