<meta charset="utf-8"><blockquote class="gmail_quote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex; ">
<span class="Apple-style-span" style="border-collapse: collapse; font-family: arial, sans-serif; font-size: 13px; ">Stop trying to hold onto tables.  You&#39;re only harming yourself... and your clients... and your visitors. :-)</span></blockquote>
<div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;"><br></span></font></div><div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;">Amen</span></font><br>
<br><div class="gmail_quote">On Tue, May 3, 2011 at 11:22 AM, Larry Garfield <span dir="ltr">&lt;<a href="mailto:larry@garfieldtech.com">larry@garfieldtech.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I had already long-since abandoned table-based layout as an unmaintainable mess by the time jQuery came about.  Certainly manipulating the page at runtime will be easier if you have semantically useful markup rather than presentational markup.  That way you can vary the presentation by just flipping some CSS settings rather than screwing with the DOM (which is harder, more error prone, takes more code, and makes the browser work harder which results in slower pages).<br>

<br>
Really.  Stop trying to hold onto tables.  You&#39;re only harming yourself... and your clients... and your visitors. :-)<br>
<br>
--Larry Garfield<br>
<br>
On 5/2/11 6:47 PM, Warren Vail wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Larry,<br>
<br>
I Did a little more research that generated a new question, would love<br>
to get your input.<br>
<br>
I did find several sites designed for mobile devices that are being used<br>
successfully with tables so that bit may have been speculation, but I<br>
did discover, I think, two modules within Drupal that might not work<br>
well with Tabled layout, jQuery and RDF. jQuery alone is probably worth<br>
my learning CSS layout, just to be able to crank out all the possible<br>
features there now and in the future. RDF, unless I miss-read something,<br>
seems to be designed to make the search engine job easier by providing a<br>
mechanism for you to tell the search engine the entire story of a page,<br>
something normal text scanning could (and does) occasionally miss. My<br>
only reservation about RDF is the potential for abuse, but then I<br>
probably will find they’ve fixed that when I read a bit more on the subject.<br>
<br>
Is it true that jQuery has problems with tabled layout?<br>
<br>
/*/Warren Vail/*/<br>
<br>
------------------------------------------------------------------------<br>
<br>
*From:*<a href="mailto:development-bounces@drupal.org" target="_blank">development-bounces@drupal.org</a><br>
[mailto:<a href="mailto:development-bounces@drupal.org" target="_blank">development-bounces@drupal.org</a>] *On Behalf Of *Larry Garfield<br>
*Sent:* Sunday, May 01, 2011 10:45 PM<br>
*To:* <a href="mailto:development@drupal.org" target="_blank">development@drupal.org</a><br>
*Subject:* Re: [development] Tables in Themes in Drupal 7<br>
<br>
Table-based markup:<br>
<br>
1) Is worse for search engines. Search engines handle semantic markup<br>
better, because they can extract useful information about the page from<br>
the markup. Tables confuse them and they cannot rank the data on the<br>
page as well.<br>
<br>
2) Is more verbose. While your eyes may have grown accustomed to it,<br>
that makes the page load more slowly. With the proliferation of the<br>
wireless web (back to dialup speeds we go!), that is a significant<br>
problem. The usual example I use here is Slashdot, which switched from<br>
table-based to pure-CSS layout back in the early &#39;00s and saved multiple<br>
*gigabytes* of data transfer per month. That translates into $$$, as<br>
well as a faster user experience.<br>
<br>
3) Is harder to maintain. Really. Even in a CMS.<br>
<br>
4) Is not accessible. By &quot;accessible&quot; I mean &quot;makes sense to something<br>
other than a pair of human eyeballs&quot;. Screen readers, search engines,<br>
assitive technology (for people that are partially disabled), etc. all<br>
work better with intelligent, semantic markup than with purely visual<br>
markup.<br>
<br>
5) Is harder to build. Really. Especially in a dynamic system like<br>
Drupal, table-based layout makes it harder to build a flexible page.<br>
<br>
6) Doesn&#39;t scale down to mobile browsers. Mobile browsers will be the<br>
majority of web traffic within 2 years or so by some estimates. In some<br>
parts of the world it already is. Good semantic designs scale down to 4&quot;<br>
screens far more easily than tables. I&#39;d go as far as saying that<br>
&quot;adaptive design&quot; (where the layout changes depending on the size of the<br>
screen automatically) is simply impossible with tables.<br>
<br>
7) Doesn&#39;t offer anywhere near the expressive power of CSS. If you&#39;re<br>
trying to get a visual effect fancier than three columns with fixed<br>
rectangular color regions, you need to use CSS for styling. Tables just<br>
can&#39;t do that.<br>
<br>
Not to put too fine a point on it, but if all you&#39;re thinking about is<br>
&quot;a good looking theme&quot;, use Photoshop, not the web. Building a web page<br>
is about far far far more than simply painting a picture, and if you<br>
want to do more than paint a picture that has columns in it you need to<br>
use CSS-based layout.<br>
<br>
&quot;Personal preference&quot; is not even on the table (no pun intended) for why<br>
CSS-based design is better than table-based. It&#39;s not a &quot;prejudice of<br>
the lazy&quot;. It&#39;s a prejudice for using the right tools for the job they<br>
were intended for, and using them properly. That&#39;s not a subjective<br>
statement, nor one simply based on which one learned first.<br>
<br>
Yes, it&#39;s time for you to learn CSS. Fortunately, it&#39;s much easier than<br>
it used to be since modern browsers finally support CSS properly (now<br>
that IE 6 is a virtually non-existent player in most markets).<br>
<br>
--Larry Garfield<br>
<br>
On 05/02/2011 12:07 AM, Warren Vail wrote:<br>
<br>
I was just getting ready to tackle my first theme in Drupal 7, and is my<br>
practice, looking through the themes to find for one to hack into being<br>
mine, when I found that none of them used tables for layout. Now I have<br>
heard many people voice the opinion that tabled layouts (which I’ve been<br>
quite successful with) are bad, and CSS (which I am less prepared to<br>
deal with) are good. And in my ages of experience I have, up until now,<br>
assumed that the expressed choice between good and bad was based on (as<br>
it often is) what people had learned vs what they had not, and did not<br>
want to have to bother to learn, so I said nothing until now<br>
<br>
Now I see that Drupal 7 (a product I have some respect for) seems to<br>
have none, in those that I have looked into, at least. Did what I had<br>
perceived to be merely a prejudice of the lazy make it’s way all the way<br>
into the D7 Platform, or is there some legitimate reason for abandoning<br>
tabled layouts that I have missed (must I finally buckle down to my own<br>
laziness and tackle CSS to that depth)?<br>
<br>
Why are Tables BAD and CSS GOOD (keep in mind, I’m after a good looking<br>
theme, and not good looking code, necessarily, since none of my end<br>
users will ever look at the code). I am looking for some reason other<br>
than good looking code (or someone’s vision of correctness) to get<br>
behind CSS for my themes, and believe me “being easier” won’t convince<br>
me much either. I’m guessing there must be some other good reason I’ve<br>
missed.<br>
<br>
What would that be?<br>
<br>
/*/Warren Vail/*/<br>
<br>
</blockquote>
</blockquote></div><br></div>