Forum Moderators: not2easy
Its landing where I want it to, but the thing is, its still taking up space in its natural spot, bumping down elements below.
How can I make it so the things below it in the code position themselves as if they didn't realize the first element was there?
Thanks
. Use negative margins. margin-right: -100%; for example. *Check this carefully* on your supported browsers if you choose to go down this route. I've only used it in limited scenarios.
Unfortunately I can't nestle the elements or else I would break valid html rules, but the negative margins worked great.
I've tested it in PF IE 6 and PC FF 1, now I guess I just need to do some more testing to make sure it works in the rest of the browsers before implementing it.
Thanks again, I was heading in the right directions attempting z-indexs and different floats. I would never have ventured into negative margins.