Quote:
Originally Posted by Judith2
Hi,
how can I get the footer background image in the center of the side?
tx
Judith
|
Add a footer class like this and assign it into the DIV which your footer is using
Code:
.footerclass {
background-image: url('your_footer_background.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
Hope it helps!