Hey, so I was making a cb layout using this tutorial, and i used the codes and was trying to just make a simple black and white theme, but all I got was the same profile with small fonts.
CODE
<style>
body{
background-color: FFFFFF;
background-image: url("URLTOBACKGROUNDIMAGE");
background-repeat: repeat;
scrollbar-arrow-color:000000;
scrollbar-track-color:ffffff;
scrollbar-shadow-color:ffffff;
scrollbar-face-color:ffffff;
scrollbar-highlight-color:ffffff;
color: ffffff;
}
.innerbox, .entrybox{color: 000000; background-color: ffffff; border-color: 000000; border-size: 2 !important;}
#footer{background-color: ffffff; color: 000000; border-color: 000000; border-size: 2;}
.linkbox {color: 000000; background-color:ffffff; border-color: 000000; border-size: 2 !important;}
.alertbox {color: 000000; background-color:ffffff; border-color: 000000; border-size: 2 !important;}
li, li.top{color: 000000; background-color:ffffff !important;}
.comment_body smaller grey, .comment_body{font:normal 7px tunga; color:000000; background-color: ffffff; border-color: 000000; border-size: 2; }
body,table, td, li, p, div{font-size: 7px; font-family: tunga; color: 000000;}
a, a:link{font:normal 7px tunga; color: 000000 !important;}
a:active{font:normal 7px tunga; color: 000000 !important;}
a:visited{font:normal 7px tunga; color: 000000 !important;}
a:hover{font:normal 7px tunga; color: 808080 !important;}
b{ color: 808080; font-family: tunga; font-size: 9px; }
i{ color: 808080; font-family: tunga; font-size: 7px; }
u{ color: 808080; font-family: tunga; font-size: 7px; }
</style>
What did I do wrong?