Forum Moderators: not2easy
#nav {
float:left;
width: 148px;
text-align:center;
background: transparent;
padding: 0;
}
/* this is the one im attempting to put direcvtly under the nav container so i can add a filler background into it so the background bar on the left extends to the bottom of the page*/
#undernav {
position: absolute;
left: -12px;
top: 550px;
float:left;
width: 148px;
text-align:center;
background: white;
border: solid 1px red;
}
########################
Pat
I'm not sure that absolutely positoning a div under the nav will work
what about a background image on the content div itself repeating all the way down the page then just cover it up with header or footer background image/colors as required.
that way the image should repeat as far as the longest column requires?
Suzy
}
##############################
If i set it to content it would overlay the body and with the style of the background i needed it under it.
Should i also set the *html #content to show a negative top margin?
Pat