here is the layout

http://timsegreto.com/cssmock/mock.html

i need the background image to scroll concordant with the text block in the right column. ive tried many different ways with no success. any ideas would greatly appreciated. not sure if its possible or what t research to make it work.

thanks!

link|improve this question
This works in FF and Chrome but completely wrecks the layout in IE. – robotmahn Nov 30 '11 at 19:57
feedback

2 Answers

up vote 0 down vote accepted

It seems to me that you have fixed positioning on the wrong element. Try making #framecontent position fixed and remove it from #maincontent.

EDIT It's 'quirks' mode that's causing you IE issues. Get rid of the:

<!--Force IE6 into quirks mode with this comment tag-->

from the beginning of your html. I'm sure this is supposed to be solving other cross-browser issues but it's ruining fixed positioning.

link|improve this answer
Hey Thanks, I tried that and it works perfect in FF and Chrome but wrecks the layout in IE. any ideas? i've uploaded the version with your suggestion. timsegreto.com/cssmock/mock.html – robotmahn Nov 30 '11 at 18:41
@robotmahn: Try removing the overflow property on #mainconent. – Godwin Nov 30 '11 at 19:37
No change in IE unfortunately... – robotmahn Nov 30 '11 at 19:56
This is pretty great, I just found out that IE no longer supports fixed positioning. I'm looking into this. In the meantime, get rid of all of those overflow properties. – Godwin Nov 30 '11 at 20:02
@robotmahn: see the edit. – Godwin Nov 30 '11 at 20:11
show 2 more comments
feedback

Have you adding an extra div and setting the background image on that instead of on the body? You could absolutely position this extra div in the body with top: 0 - it would scroll with the page then...

not sure if thats what you're looking for exactly...

link|improve this answer
That does work in FF and Chrome but wrecks the layout in IE. It pushes the text area way down, and moves the left column off the left side of the page. Here is the page with your suggestion. timsegreto.com/cssmock/mockb.html any ideas for a hack? – robotmahn Nov 30 '11 at 18:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.