wow so many stylesheets so little time......
Well The drop shadow appears to stay attached to the right side of the div, so when the div expands.......
Might adding another div wrapping the image...that stays a fixed width.....
instead of:
Code:
<div1>
<img>
</div1>
Maybe:
Code:
<div1>
<div2>
<img>
</div2>
</div1>
with this div1 can expand or contract without affecting div2 which is set @ a fixed width to accomodate the image
Am I even close with this thought or should I dive back into the books some more?