PDA

View Full Version : Aligning problem


savannahga
Mar-14-2010, 02:26 PM
http://www.gallerysavannah.com/Purchase-Here/Banner/2299909_rqGV5

I'm trying to place the two objects in the above gallery side by side.

Anyone know the trick?, i'm not very good at html.

Thanks for any help.

Jeff

jfriend
Mar-14-2010, 05:28 PM
Change this part of your HTML:

<div style="text-align-left;">
<div style="display:block;">
<a href="http://www.blurb.com/bookstore/detail/764891?utm_source=widget (http://www.dgrin.com/view-source:http://www.blurb.com/bookstore/detail/764891?utm_source=widget)" style="font: 14px Helvetica,Arial,Sans-serif; margin: 12px 0pt 3px; text-decoration: underline;" target="_blank">Savannah by Jeff Cochran</a>
</div>
<object width="450" height="300">
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.blurb.com/assets/embed.swf?book_id=764891 (http://www.dgrin.com/view-source:http://www.blurb.com/assets/embed.swf?book_id=764891)" type="application/x-shockwave-flash" width="450" height="300" allowfullscreen="true"></embed>
</object>

</div>

to this:

<div id="myWidget1" style="float:left;">
<div id="myWidget1Link">
<a href="http://www.blurb.com/bookstore/detail/764891?utm_source=widget (http://www.dgrin.com/view-source:http://www.blurb.com/bookstore/detail/764891?utm_source=widget)" style="font: 14px Helvetica,Arial,Sans-serif; margin: 12px 0pt 3px; text-decoration: underline;" target="_blank">Savannah by Jeff Cochran</a>
</div>
<object width="450" height="300">
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.blurb.com/assets/embed.swf?book_id=764891 (http://www.dgrin.com/view-source:http://www.blurb.com/assets/embed.swf?book_id=764891)" type="application/x-shockwave-flash" width="450" height="300" allowfullscreen="true"></embed>
</object>

</div>