OZONE Asylum
Forums
CSS - DOM - XHTML - XML - XSL - XSLT
Img positioning question
This page's ID:
28175
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
It is the only solution that comes to mind, and is actually similar to something I had to do on a recent site I coded. I noticed that if your content goes down further or if you increase your text size it overlaps the absolutely positioned element. This is no good. Maybe try wrapping your copy in a new div and set the bottom-padding to about 180px to account for the #bottom element (with a little extra breathing room). This should get rid of the overlap. If that doesn't work, you could always use a table. [code] <table border="0" cellspacing="0" cellpadding="0"> <tr> <td>#copy</td> <td rowspan="2">#rightimg</td> </tr> <tr> <td valign="bottom">#bottom</td> </tr> </table> [/code] :eek: ;) As far as the Safari thing goes, try setting a width to #bottom. Looks like the div does not know how wide it should be, so it is only getting as wide as the image and just pushing the text down. Ram
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »