Forum Moderators: not2easy

Message Too Old, No Replies

Float and Image text in a DIV

         

DougWD

8:24 am on Feb 21, 2007 (gmt 0)

10+ Year Member




<div class="#*$!">
<image class="floatleft"
(image title and information that should float)
(content furhter down that should not float)
</div>

How can I keep the content further down from the image information from flaoting left with it?

Thanks again.

scriptmasterdel

6:49 pm on Feb 21, 2007 (gmt 0)

10+ Year Member



If you would like the information to be seperated into floating and not floating you need to break the content of those div's into seperate div's.

<div class="#*$!">

<image class="floatleft">
(image title and information that should float)
</div>

<div class="dontfloatleft">
(content furhter down that should not float)
</div>

</div>

Please tell me if i haven't answered your question properly.

Del

DougWD

7:45 am on Feb 23, 2007 (gmt 0)

10+ Year Member



Yes that pretty much does it. I was thinking I needed another div with it's own float class. Thanks much.