View Single Post
01-24-2005, 05:20 AM
#10
derek lapp is offline derek lapp
Status: design rockstar
Join date: Jan 2005
Location: guelph, ontario
Expertise:
Software:
 
Posts: 2,246
iTrader: 0 / 0%
 

derek lapp is on a distinguished road

  Old

the nly thing i see screwing up is the right_b image, and for some reason i blame it on being inside the div.

you hasve it going
Code:
<div id="right">
	<img src="*stuff*" />
</div>
the only way i've ever gotten an image to hug a div well in IE and FF was to put it outside the div, like so:
Code:
*note, this won't apply with your current css

<div id="right">
	<img src="welcome.gif" alt="" />
	<div id="rightbody">
		your lipsum here
	</div>
	<img src="right_b.gif" alt="" />
</div>
i've had images with round corner hug both the top and the bottom of divs before, for menu boxes, or individual item slots and that's how i've done it al the time. if i remember correctly, it worked for both transitional and strict doctypes.