Forum Moderators: not2easy
Is there any way to force the right column to stay put?
Thanks for any insight! This forum is a lifeline to me!
Christi
(This is mostly guesswork though if I don't see your code).
I hope this helps.
Is there any way to force the right column to stay put?
I would need to see your code to be sure, but chances are you're using a relative width on the container div (or no container div at all). When two adjacent floats cannot fit inside of their container's width, the second one bumps down below the first.
Either (a) apply a fixed width to the container that is just slightly larger than the combined width of the floats or (b) relatively size the floats (a bad idea, IMO).
cEM
I ended up using createErrorMsg solution. I did NOT have a container div around the navigation and content divs so I did that and all works well.
I tried DrDoc's suggestion but haven't been able to get that to work yet but I'll keep trying just to have that in my bag of tricks.
Last question, more for learning than anything, DrDoc, you said that having the content div at the top of the code is a bonus, is that just because it's easier to find and edit the content if it is at the top of the code or is there some other benefit that you are referring to?
Thanks again!