Qlou
Browser: Mozilla Firefix 3.6.13
Operating System: Windows Vista
Profile System: Classic
Problem: 1) a:hover {xxx;} code is being just ignored.
2) unnecessary bar has appeared
CSS Code (optional): (first problem)
body { background-color: #000000;
background-image: url(http://i782.photobucket.com/albums/yy101/Cracked_Nut/layout/bg.png)
background-repeat: repeat-x;
background-attachment: fixed;
font-family: Courier New, Tahoma, Verdana;
color: #0066ff;
text-align: justify; }
a:link {color: #3366ff;
text-decoration: none;
border-bottom:1px dashed #3366ff;}
a:hover {color #6699ff !important;
text-decoration: none;
border-bottom:1px dashed #3366ff !important;}
a:visited {color: #3366ff;
text-decoration: none;
border-bottom:1px dashed #3366ff;}
Screenshot (optional): second problem
your a:hover code is being ignored because u forgot the : between color and #6699ff
a:hover {color:#6699ff!important}
the bar is probably your #profile section
for some reason .section {background:transparent} will NOT make the #profile section transparent, you have to make it transparent in its own code
#profile {background:transparent}