|
I am obviously new to CSS with my sloppy coding as you will see.
This started out fully functional, but I have found a way to mess all sorts of things up.
I have ran it through the validator multiple times on w3, and thought I fixed the issues, but obviously did not. Apparently even my HTML is all sorts of junked up.
problem 1 - In firefox my line-height tags don't seem to work
problem 2 - In dreamweaver my main content area now does not display where it should (595px over from left)
Any help, suggestions, or advice would be greatly appreciated. Thanks for taking your time to look at this.
target site: redFLUX - atomized for your viewing pleasure
CSS:
body{
background:rgb(153,0,0);
margin:0px;
font:10px Verdana, Helvetica, sans-serif;
color:#808080;
letter-spacing:1px;
background-color:rgb(153,0,0);
background-image:url('http://www.redflux.com/test/images/can_bg.gif');
background-attachment:scroll;
background-repeat:no-repeat;
background-position:top-left;
margin:0px;
margin-top:0px;
margin-bottom:0px;
margin-left:0px;
margin-right:0px;
scrollbar-face-color: white;
scrollbar-shadow-color: white;
scrollbar-highlight-color: rgb(153,0,0);
scrollbar-3dlight-color: white;
scrollbar-darkshadow-color: white;
scrollbar-track-color: white;
scrollbar-arrow-color: rgb(153,0,0);
}
A:link{ color:white; text-decoration:none; }
A:hover{ color:white; text-decoration:underline; }
A:active{ color:white; text-decoration:none; }
A:active:hover{ color:white; text-decoration:underline; }
A:visited{ color:white; text-decoration:none; }
A:visited:hover{ color:white; text-decoration:underline; }
#holder{
background: rgb(153,0,0);
width:350px;
margin:0px;
margin-top:0px;
margin-bottom:0px;
margin-left:595px;
margin-right:7px;
}
#column{
width:350px;
margin-left:0px;
margin-right:0px;
margin-top:0px;
margin-bottom:0px;
border-left:gray 1px solid;
border-right:gray 1px solid;
border-top:hidden;
border-bottom:hidden;
}
#bottom{
font-size:12px;
font-weight:bold;
color:white;
letter-spacing:-1px;
padding:3px;
text-align:right;
}
h1{
font-size:12px;
font-weight:bold;
color:white;
letter-spacing:-1px;
padding:3px;
text-align:right;
line-height:5px;
}
.content{
background: rgb(153,0,0);
text-align:right;
font:10px Verdana, Helvetica, sans-serif;
line-height:5px;
padding:3px;
}
#top{
background: url(images/top_image.jpg) rgb(153,0,0) no-repeat center;
width:350px;
height:350px;
margin-left:auto;
margin-right:auto;
}
Last edited by mgraphic; 02-06-2009 at 08:53 PM..
Reason: removed link
|