You could try floating the image left. Create a CSS class with float:left.
imageDisplay takes a class attribute, so you can create the images with that
class.
So:
style.css:
.left {
float: left;
}
webskin.cfm:
<widgets:imageDisplay objectid="#stObj.imageID#" alt="#stObj.title#"
ImageSize="original" bFailToTitle="false" class="left">
Blair
On 6/1/07, schlub <[EMAIL PROTECTED]> wrote:
>
>
> The <div align="left"> doesn't work properly... essentially I have an
> image next to each fact so it *should* look something like:
>
> <div class="facts">
> <p><img src="/wsimages/icons/icon_1.jpg" alt="icon title 1"
> align="left" /><span class="red">Interesting Fact 1</span>Fact 1 Text</
> p>
> <p><img src="/wsimages/icons/icon_2.jpg" alt="icon title 2"
> align="left" /><span class="red">Interesting Fact 2</span>Fact 2 Text</
> p>
> <p><img src="/wsimages/icons/icon_3.jpg" alt="icon title 3"
> align="left" /><span class="red">Interesting Fact 3</span>Fact 3 Text</
> p>
> <p> </p>
> </div>
>
> This produces an image on the left, with the text aligned to the top-
> right corner.
>
> **** Text Text
> **** Text Text
> **** Text Text
>
> When I switch to the imageDisplay widget what I end up with is sans
> align="left". So i end up with an image with the text starting near
> the bottom of the image
>
> ****
> ****
> **** Text Text
> Text Text
> Text Text
>
> If I put <div align="left"> around the module it drops the text below
> the image
>
> ****
> ****
> ****
> Text Text
> Text Text
> Text Text
>
>
> On May 31, 10:18 pm, Jaci <[EMAIL PROTECTED]> wrote:
> > You could use a simple <div align="left"></div> around your widgets
> > output or wrap your display in a table align left on the column that
> > holds the image. I'm new to this so this may be a bad ideas for some
> > reason but I don't see why you couldn't.
> >
> > On May 31, 3:24 am,schlub<[EMAIL PROTECTED]> wrote:
> >
> > > I am trying to display some images next to my facts... it all seems to
> > > be working fine, but I need to align the images left. I don't seem to
> > > be able to pull up any reference to imageDisplay in the core files to
> > > see what parameters are available to me
> >
> > > This is what I am using:
> >
> > > <cfimport taglib="/farcry/farcry_core/tags/widgets" prefix="widgets">
> > > <widgets:imageDisplay objectid="#stObj.imageID#" alt="#stObj.title#"
> > > ImageSize="original" bFailToTitle="false">
> >
> > > If I chuck in align="left" it doesnt work :(
> >
> > > Is there a way to do this? or a different approach?
>
> ?
>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/farcry-dev?hl=en
-~----------~----~----~----~------~----~------~--~---