Posts: 2,389
Name: <member type="brilliant" alt="foolish">James Lewitzke</member>
Location: / public_html / Universe / Virgo_Supercluster / Local_Group / Milky_Way / Orion_Arm / Solar_System / Earth / North_America / USA / Wisconsin
|
Well, it depends on what you're saying the "correct change" is. I don't know exactly what that is, but here's what I'd do.
First, because the primary body background image is only 1 X 820. it's going to stop there once your content flows past that. So you'll want to add what's the lowest color on the image to the CSS, so that's the color it'll be once that happens:
Code:
body {
background: url("images/mainBg.jpg") repeat-x scroll 0 0 #C0DEF8;
}
Also, since you still appear to want the text to appear on the background, give your mainBody a (white) background color. With a background color added to the main body section, padding and margins shouldn't have that particular effect.
Then add similar stylings to your footer section once everything else is set.
|