HI,
The problem is because the nav contaniner #Vnav isn't floated and therefore any static content will start in line with this. If you float #Vnav then the content will rise up.
Because you are using s free server you will find they they are inserting code above the doctype which will put ie into quirks mode and all your box model hacks will be incorrect because in quirks mode ie6 uses the broken box model in the same way that ie5.+ always does.
You really need to get your own web space so that you have control over things like this. It's cheap enough these days so there is no real excuse
.
You can fix the nav widths problems like this (plus the margin problem also).
Code:
/* SIDE NAVIGATION BAR */
#Vnav{
/*Away from edge of #main*/
margin: 22px 0 0 20px; /* +main padding = 30 down, 20 lft*/
padding: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: normal;
font-size: 10px;
float:left;
display:inline;/* ie double margin bug*/
width: 138px;
}
/*Anchors for all lists*/
#Vnav li a {
/* removed widths from here*/
display: block; /*makes entire area around link clickable*/
color: #FFFFFF;
background-color: #22323B;
text-decoration: none;
text-align: left;
border: 1px #000 solid;
padding: 4px 0 4px 9px;
}
/* mac hide \*/
* html #Vnav li a{height:1%}
/* end hide*/
Bookmarks