Code:
body {
background:#fff url(http://xs74.xs.to/pics/06133/blackdrops.jpg) repeat-x;
margin:0;
padding:40px 20px;
font:8pt Arial;
align: center;
text-align:center;
color:#000;
SCROLLBAR-FACE-COLOR: #232323;
SCROLLBAR-HIGHLIGHT-COLOR: #ddd;
SCROLLBAR-SHADOW-COLOR: #ddd;
SCROLLBAR-3DLIGHT-COLOR: #ffffff;
SCROLLBAR-ARROW-COLOR: #FF0000;
SCROLLBAR-TRACK-COLOR: #eeeeee;
SCROLLBAR-DARKSHADOW-COLOR: #ffffff;
}
That's invalid, may throw off the rest of the style block. There are a number of style errors here and on the external stylesheet as well, the most important is that it ends like so:
Code:
.SB_table1 {
background-color : #FFFFFF;
border-bottom-color : gray;
border-bottom-style : solid;
border-bottom-width : 0;
border-left-color : gray;
border-left-style : solid;
border-left-width : 0px;
border-right-color : gray;
border-right-style : solid;
border-right-width : 0px;
border-top-color : gray;
border-top-style : solid;
border-top-width : 0px;
color : #000000;
font-size : xx-small;
}
blink;
Get rid of that red part. Sometimes the scrollbar styles must be set for the html selector rather than the body selector:
Code:
html {
scrollbar styles
}
Try validating your css.
Bookmarks