<?xml version="1.0"?>
<rss version="2.0">
 <channel>
  <title>fluid thumbnails | WPDFD.com Forums</title>
  <link>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/</link>
  <description>A Layout forum thread at WPDFD.com</description>
  <language>en-us</language>
  <pubDate>07/03/04, 185 34 2004 2004:%i:1088879664 14:34:24</pubDate>
  <lastBuildDate>06/07/13, 158 40 2013 2013:%i:1370594424 04:40:24</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>NineLabs Framework Feed Generator</generator>
  <managingEditor>sitemaster@wpdfd.com</managingEditor>
  <webMaster>sitemaster@wpdfd.com</webMaster>
     <item>
    <title>Thriva  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1050</link>
    <description><![CDATA[Hello, I hope someone can help me with this. <br /><br />My problem is with a php postcard script I am currently playing with. The script works fine, the difficulty I'm having is with the thumbnail page. Each of the thumbnails is a form, what I would like is for the images to fall in a row (with a bit of a margin of course) until the row is full and then for the next one to drop to the beggining of the next row and so on... just like text in fact. I can't seem to find a way to make them behave like your bog standard image.<br /><br />Any ideas? Is it possible?]]></description>
    <pubDate>07/03/04, 185 34 2004 2004:%i:1088879664 14:34:24</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1050</guid>
   </item>
     <item>
    <title>Joe Gillespie said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1051</link>
    <description><![CDATA[If the images are put inside a enclosing div that is set to text-align:left, or even into a table cell, they should fall the way you want. Give the images vspace and hspace values to get your margins.]]></description>
    <pubDate>07/03/04, 185 56 2004 2004:%i:1088891770 17:56:10</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1051</guid>
   </item>
     <item>
    <title>Thriva  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1052</link>
    <description><![CDATA[Did you mean something like this?<br /><br /><span style="font-size:1px;"><br />&lt;!DOCTYPE HTML PUBLIC &quot;-//WC3//&lt;!DOCTYPE HTML PUBLIC &quot;-//WC3//DTD HTML 4.01 Transitional//EN&quot;<br /> &nbsp; &nbsp; &nbsp;&quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;<br /><br />&lt;head&gt;<br /><br />&lt;title&gt;Postcards from the edge&lt;/title&gt;<br />&lt;meta http-equiv=&quot;Content-type&quot;<br /> &nbsp; &nbsp; &nbsp;content=&quot;text/html; charset=ISO-8859-1&quot;&gt;<br /><br /><br />&lt;style type=&quot;text/css&quot;&gt;<br />.sidebys { text-align: left; margin: 20px; width: 200px; height: 140px; border: 2px solid #336; overflow: hidden }<br />&lt;/style&gt;<br />&lt;/head&gt;<br /><br />&lt;body&gt;<br /><br /><br />&lt;div class=&quot;sidebys&quot;&gt;<br />&lt;form method=&quot;post&quot; action=&quot;sendcard.php&quot;&gt;<br />&lt;input type=&quot;image&quot; border=&quot;0&quot; value=&quot;Submit&quot; src=&quot;images/tn_mapledesign.gif&quot; width=&quot;200&quot; height=&quot;140&quot; name=&quot;image&quot; style=&quot;width: 200px; height: 140px;&quot;&gt; <br />&lt;input type=&quot;hidden&quot; name=&quot;image&quot; value=&quot;mapledesign.gif&quot;&gt;<br />&lt;/form&gt;<br />&lt;/div&gt;<br /><br /><br />&lt;div class=&quot;sidebys&quot;&gt;<br />&lt;form method=&quot;post&quot; action=&quot;sendcard.php&quot;&gt;<br />&lt;input type=&quot;image&quot; border=&quot;0&quot; value=&quot;Submit&quot; src=&quot;images/tn_mapledesign.gif&quot; width=&quot;200&quot; height=&quot;140&quot; name=&quot;image&quot; style=&quot;width: 200px; height: 140px;&quot;&gt; <br />&lt;input type=&quot;hidden&quot; name=&quot;image&quot; value=&quot;mapledesign.gif&quot;&gt; <br />&lt;/form&gt;<br />&lt;/div&gt;<br /><br /><br />&lt;/body&gt;<br /><br />&lt;/html&gt;<br /></span><br /><br />That doesn't work for me; they still go one on top of the other... they went side by side when I changed the divs to spans and hadn't yet put in the declaration (I got quite excited at that point) but it didn't work once the declaration went in.<br /><br />Maybe I've misunderstood what you were saying... ]]></description>
    <pubDate>07/04/04, 186 50 2004 2004:%i:1088970621 15:50:21</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1052</guid>
   </item>
     <item>
    <title>Joe Gillespie said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1053</link>
    <description><![CDATA[I see what you are trying to do now. Yes, unlike images, forms will go one above another. Why does it have to be a form? The image itself could be a button with an onclick event pointing to the PHP URL without needing a form at all.<br /><br />Otherwise, you will have to put each form inside a div that is floated left.]]></description>
    <pubDate>07/04/04, 186 05 2004 2004:%i:1088982326 19:05:26</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1053</guid>
   </item>
     <item>
    <title>Thriva  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1054</link>
    <description><![CDATA[Thanks, worked a treat. Never occurred to me to use the float property in that way… it’s a poor day when you learn nowt.<br /><br />Yes, I think I understand why it doesn’t need to be a form. Originally there was an option to write a caption which didn’t interest me so I removed it. It would be neater to make it into a button… &lt;sharp intake of breath&gt; are we talking javascript here? &nbsp;If so, that’s kind of out of my area of expertise, such as it is &lt;laughs&gt; so maybe I'll stick to the 'float left' method.<br /><br />One other thing, I build my pages in IE, after all, my select audience all use this... I used to check them in Netscape too but kind of got the feeling that Netscape was on it's way out... if I were to check using just one other browser which would you suggest? ]]></description>
    <pubDate>07/05/04, 187 27 2004 2004:%i:1089062849 17:27:29</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1054</guid>
   </item>
     <item>
    <title>Joe Gillespie said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1055</link>
    <description><![CDATA[<blockquote>if I were to check using just one other browser which would you suggest?</blockquote><br /><br />Netscape 7, Mozilla, Firefox and Camino all use the Gecko rendering engine and will give similar results - but why stop at two? Safari and Opera are important too!]]></description>
    <pubDate>07/05/04, 187 07 2004 2004:%i:1089065267 18:07:47</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1055</guid>
   </item>
     <item>
    <title>Thriva  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1056</link>
    <description><![CDATA[Well that was interesting! I had such a difficult time remaining logged on in this forum with Opera that in the end I had to reconnect in IE. This is a shame because I kind of like Opera. <img src="/images/emoticons/sidesmile.png" class="smiley" />]]></description>
    <pubDate>07/09/04, 191 04 2004 2004:%i:1089414298 19:04:58</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/fluid_thumbnails/#p1056</guid>
   </item>
   </channel>
</rss