<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

      <title>Comments on: HTML tricky layout filter</title>
      <link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter/</link>
      <description>Comments on Ask MetaFilter post HTML tricky layout filter</description>
	  	  <pubDate>Tue, 04 Apr 2006 04:59:45 -0800</pubDate>
      <lastBuildDate>Tue, 04 Apr 2006 04:59:45 -0800</lastBuildDate>
      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>

<item>
  	<title>Question: HTML tricky layout filter</title>
  	<link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter</link>	
  	<description>HTML tricky layout filter: The page I&apos;m developing is doing some unsuspected things: what good advanced HTML forums do you use? &lt;br /&gt;&lt;br /&gt; I need some HTML help, do you know of any good online HTML forums? I went to webdeveloper.com and it seemed to be a bit simplistic.&lt;br&gt;
&lt;br&gt;
One of the table cells on another row is extending when I add a certain amount of content. See http://vhost1.cashcade.co.uk/~barbary/jon/articles5.php&lt;br&gt;
&lt;br&gt;
Notice the cell with the small round icon of the moustached top-hat man on the left has extended so it appears just red.&lt;br&gt;
&lt;br&gt;
this is driving me nuts and i&apos;ve turned to forums for help!&lt;br&gt;
&lt;br&gt;
heaps of help in advance for any light shed.&lt;br&gt;
&lt;br&gt;
cheers&lt;br&gt;
&lt;br&gt;
jon</description>
  	<guid isPermaLink="false">post:ask.metafilter.com,2008:site.35670</guid>
  	<pubDate>Tue, 04 Apr 2006 04:30:11 -0800</pubDate>
  	<dc:creator>jwhittlestone</dc:creator>
	
	<category>html</category>
	
	<category>layout</category>
	
</item>
<item>
  	<title>By: MetaMonkey</title>
  	<link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter#554729</link>	
  	<description>&lt;a href=&quot;http://www.webmasterworld.com/forum21/&quot;&gt;webmasterworld&lt;/a&gt; is a popular forum with lots to search through.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.35670-554729</guid>
  	<pubDate>Tue, 04 Apr 2006 04:59:45 -0800</pubDate>
  	<dc:creator>MetaMonkey</dc:creator>
</item>
<item>
  	<title>By: twistedonion</title>
  	<link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter#554742</link>	
  	<description>Have you tried defining a height to the td cells? Try making them te same height as the graphics they contain. also - I&apos;d be careful with the spaces in your html. They can (though I don&apos;t know why) cause issues. &lt;br&gt;
&lt;br&gt;
eg:&lt;br&gt;
----------------------------------------&lt;br&gt;
[td]&lt;br&gt;
                [img src=&apos; height=&apos; width=&apos;][/td]&lt;br&gt;
---------------------------------------&lt;br&gt;
&lt;br&gt;
might be better just as:&lt;br&gt;
----------------------------------------&lt;br&gt;
[td][img src=&apos; height=&apos; width=&apos;][/td]&lt;br&gt;
----------------------------------------&lt;br&gt;
&lt;br&gt;
Don&apos;t ask me why, but it&apos;s happened to me a few times. Removing any spaces solved the problem.&lt;br&gt;
&lt;br&gt;
Your layout is probably uneccesarily complex through the use of lots of rowspans and colspans. If any of them are out it may explain the issue.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.35670-554742</guid>
  	<pubDate>Tue, 04 Apr 2006 05:41:39 -0800</pubDate>
  	<dc:creator>twistedonion</dc:creator>
</item>
<item>
  	<title>By: kirkaracha</title>
  	<link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter#554778</link>	
  	<description>First, validate your &lt;a href=&quot;http://validator.w3.org/check?uri=http%3A%2F%2Fvhost1.cashcade.co.uk%2F%7Ebarbary%2Fjon%2Farticles5.php&quot;&gt;HTML&lt;/a&gt; and &lt;a href=&quot;http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fvalidator.w3.org%2Fcheck%3Furi%3Dhttp%253A%252F%252Fvhost1.cashcade.co.uk%252F%257Ebarbary%252Fjon%252Farticles5.php&amp;usermedium=all&quot;&gt;CSS&lt;/a&gt;. There are lots of errors in the HTML; most of them are minor (like images without alt tags), but there are some that are related to tables, which is probably causing layout problems.&lt;br&gt;
&lt;br&gt;
Also, you might want to consider a &lt;a href=&quot;http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-col/&quot;&gt;simple CSS layout&lt;/a&gt; instead of using tables.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.35670-554778</guid>
  	<pubDate>Tue, 04 Apr 2006 06:31:46 -0800</pubDate>
  	<dc:creator>kirkaracha</dc:creator>
</item>
<item>
  	<title>By: twistedonion</title>
  	<link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter#554783</link>	
  	<description>ok, I was able to fix it. Define the height values of the tds to correspond the images. so [td height=&apos;77&apos;][img src=&apos; height=&apos;77&apos;][/td]&lt;br&gt;
&lt;br&gt;
That should do the trick</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.35670-554783</guid>
  	<pubDate>Tue, 04 Apr 2006 06:37:10 -0800</pubDate>
  	<dc:creator>twistedonion</dc:creator>
</item>
<item>
  	<title>By: misterbrandt</title>
  	<link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter#554788</link>	
  	<description>If I understand your problem, set the top-hat image to be display:block, and that will allow the bottom of its cell to pull up tight to the image.&lt;br&gt;
&lt;br&gt;
[td][img style=&apos;display:block&apos;][/td]&lt;br&gt;
&lt;br&gt;
If not a simple CSS-based layout, you can at least dramatically simplify your table so it is just a wireframe for your header, footer and columns, and then fill those with content.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.35670-554788</guid>
  	<pubDate>Tue, 04 Apr 2006 06:40:58 -0800</pubDate>
  	<dc:creator>misterbrandt</dc:creator>
</item>
<item>
  	<title>By: dvdgee</title>
  	<link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter#554880</link>	
  	<description>any forum with members of any expertise would probably flame you for using tables on a page with no tabular data. learn some basic css layouts, alistapart.com is a good place to start, and then subscribe to css-discuss, a very high volume list but a good place to go when you have a problem.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.35670-554880</guid>
  	<pubDate>Tue, 04 Apr 2006 08:27:34 -0800</pubDate>
  	<dc:creator>dvdgee</dc:creator>
</item>
<item>
  	<title>By: jwhittlestone</title>
  	<link>http://ask.metafilter.com/35670/HTML-tricky-layout-filter#555812</link>	
  	<description>thanks to all, found problem, restructured the table so that the content cells (nav, main content, and right area) where on the same row..</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.35670-555812</guid>
  	<pubDate>Wed, 05 Apr 2006 03:33:07 -0800</pubDate>
  	<dc:creator>jwhittlestone</dc:creator>
</item>

    </channel>
</rss>
