Copy link to clipboard
Copied
Hello, everyone.
I've never used CFIMAGE, before, but I'm using it now. I really like it. But I have a question.
I'm pulling BLOB from a database and using that to writeToBrowser. Is there a way to align the image left so that accompanying text will flow around it to the right?
Thanks,
^_^
Can you place a <div> around your cfimage tag? Something like:
<div style="float:left;">
<cfimage ... />
</div>
Or some other HTML tag that will let you align it (<p>, <span>, etc)
Copy link to clipboard
Copied
Can you place a <div> around your cfimage tag? Something like:
<div style="float:left;">
<cfimage ... />
</div>
Or some other HTML tag that will let you align it (<p>, <span>, etc)
Copy link to clipboard
Copied
Hi, Miguel-F, and thanks for responding.
Currently, it (along with text pulled from database) resides inside a div and paragraph, like so:
<div>
<h5>blah</h5>
<p><cfimage>#text from database#</p>
</div>
But this is starting the text immediately following the image, starting at the image lower-right corner. Do you think putting it in a div and aligning the div to the left will accomplish that?
^_^
Copy link to clipboard
Copied
That did the trick, Miguel. Thanks!
^_^