Hello Donna,
You may already have your solution by now, but are you trying to achieve a fixed width layout? (where your side columns and main column stay the same with, and the dark blue areas to the left and right of your page stretch when needed?)
If so, you'd need to make a few adjustments to your stylesheet.
Where it says:
HTML Code:
#mainWrapper {
background-image: url(../images/topbg.gif);
text-align: center;
width: 85%;
vertical-align: top;
/*border: 1px solid #cacaca;*/
}
Change that to something, like:
HTML Code:
#mainWrapper {
background-image: url(../images/topbg.gif);
text-align: center;
width: 780px; /* or the width you desire */
margin: 0px auto;
vertical-align: top;
/*border: 1px solid #cacaca;*/
}
I believe that should do it.
Have fun, David
Bookmarks