Log in

View Full Version : Need Background repeat into header and footer



kairick
06-24-2010, 01:40 AM
Hi I'm trying to figure out how to get my background on this page

http://neighborhoodrestaurantgroup.com/test/press/press.html

to appear the way it does on this page

http://neighborhoodrestaurantgroup.com/test/
(http://neighborhoodrestaurantgroup.com/test/)

Note how the top and bottom of the press.html page background are not present.

I posted links so that you can see what I'm talking about. If you need me to post page code, please let me know.

Thanks

azoomer
06-24-2010, 01:54 AM
Try to change your css like this

body {
background-color:#54341B;
background-image:url("../images/Pattern_BG_3.jpg");
background-repeat:repeat;
padding-bottom:30px;
padding-top:30px;
}
changing the margin-top to padding-top and so on.

kairick
06-24-2010, 04:49 AM
Worked perfectly, thanks!