Hi all,
Im new to this forum and pretty new to css so i hope you guys can help me out a bit.
ok, so on a site i have made i have two divs that have an image each set as their backgrounds (mirrored) one positioned left and one right. background-position: left bottom ; & background-position: right bottom ;
My problem is when the window (browser) is resized the two backgrounds overlap each other making it look like a right mess. I tried using the overflow: hidden; but with no joy.
here is the css for the two divs.
Code:
#back1{
background-image:url('../images/background2.PNG');
background-repeat:no-repeat;
background-attachment:fixed;
background-position: left bottom ;
background-attachment: fixed;
overflow: hidden;
}
#back2{
background-image:url('../images/background3.PNG');
background-repeat:no-repeat;
background-attachment:fixed;
background-position: right bottom ;
overflow: hidden;
}
the second problem i have is with Safari the background divs dont seem to sit at the bottom of the page they look like they hoover about 50+px from the bottom of the page. It seems to be fine in firefox and ie(compatibility mode on)
If any one can help id be very thankful 
|