Brett_Tabke

msg:567388 | 1:07 pm on Mar 8, 2001 (gmt 0) |
That is a good historical backdrop Tedster. I use tables everywhere - a grand abuser of the scheme. They are getting old, but you just can't beat them for controlling layout. One of the interesting tags in html4 is the tfoot, thead, and tbody tags. If you are using html4, they might be well worth a look because the added functionality. What I would like to find, is a HTML validator, (other than cse) that can successfully find table problems.
|
sugarkane

msg:567389 | 5:22 pm on Mar 8, 2001 (gmt 0) |
Now this may be the product of a fevered imagination, but I'm *certain* that one version of Netscape I used ages ago showed table errors as flashing when you did a 'view source' The only windows version of NS I've got to hand is Communicator 4.06, and it doesn't do it. Did I dream it?
|
glauber

msg:567390 | 6:47 pm on Mar 8, 2001 (gmt 0) |
Brett_Tabke said: >What I would like to find, >is a HTML validator, (other >than cse) that can >successfully find table >problems. Doesn't Tidy handle them? [web3.w3.org...]
|
Brett_Tabke

msg:567391 | 6:54 pm on Mar 8, 2001 (gmt 0) |
I work with mostly dynamically generated stuff. The actual html I generate isn't where changes are needed - I need it in the source. So, 'tidying' up and html page, doesn't address or inform me of the problem.
|
mivox

msg:567392 | 7:03 pm on Mar 8, 2001 (gmt 0) |
I'm using 4.7, and I've seen flashing code for other errors, so you weren't dreaming. But then again, I've seen pages with 'invisible tables' that didn't show any flashing code, so I'm not sure quite how it works. For complex tables, with many cells that have a column or row span of more than 1 (very prone to strange spacing errors), I make sure ALL cells have a height and width attribute specified, and I add a row of 1px cells across the top, and a column of 1px wide cells down one side... then in each 1px cell, I place a transparent gif that exactly matches the height/width of the row/column it belongs to. Don't know why, but it seems to cure the syndrome of one cell or another displaying at a really randomly huge width or height.
|
tedster

msg:567393 | 8:01 pm on Mar 8, 2001 (gmt 0) |
mivox, that's the way that NetOjectsFusion used to handle writing cross-browser code, and it works rather well. I don't usually give the full treatment these days unless troubles are cropping up with more minimal coding. The touchy part is declaring table width AND the cell widths. The table width amount must account for the total of individual cells PLUS cellspacing and cellpadding (which are 1 pixel by default) or anomalies will show up. Here's a page [iglou.com] that really disects the cell width problems in tables. I found that one good study of the concepts here helped me a lot. Edited by: tedster
|
mivox

msg:567394 | 9:09 pm on Mar 8, 2001 (gmt 0) |
I *never* use the 'extra row' technique unless there's a visible problem in a major browser... Too many extra lines of code cluttering up the page. I've really gotten away from doing coplex tables like that too, so I rarely have a call for it anymore. As for the cell width/teble width settings: in GoLive, you can leave the table width setting on "auto", define all your cell widths, and then use a drop down selector to change the table width setting to "pixels". It automatically calculates the pixel value for the table... "no math required" is always a bonus feature to me! ;)
|
scott

msg:567395 | 9:17 pm on Mar 8, 2001 (gmt 0) |
Now that I've got CSS going, I'll only use tables as a last resort. I just can't get over the layout control of CSS!
|
theperlyking

msg:567396 | 9:10 am on Mar 9, 2001 (gmt 0) |
I too am a table junkie. Useful tips especially for people who havent yet had the pleasure of tearing their hair out and wailing over why netscape shows a corrupt page. I worry about CSS as while it is a fine idea it tends not to work well cross browser/platform. I take some pride in seeing my sites work on platforms as diverse as the Amiga and QNX.
|
lizzie

msg:567397 | 1:55 pm on Mar 9, 2001 (gmt 0) |
I would like to find a way to turn a small table into a gif or jpeg file. I know it probably isn't possible...?
|
scott

msg:567398 | 3:06 pm on Mar 9, 2001 (gmt 0) |
lizzie, how about this? Open the table in your browser and do a screen shot. Then just crop it down to get rid of everything but the table. -Scott
|
lizzie

msg:567399 | 10:45 pm on Mar 9, 2001 (gmt 0) |
That is one of the cleverist things I have ever heard of. You are brilliant!
|
lizzie

msg:567400 | 10:47 pm on Mar 9, 2001 (gmt 0) |
The table has 3 links in it.
|
tedster

msg:567401 | 10:52 pm on Mar 9, 2001 (gmt 0) |
Two ways to handle the links come to mind, if you are using the screenshot technique. The first is use a client side image map -- but spiders don't usually follow image map links (not sure about googlebot -- it seems to eat almost everything these days). Second, slice up the GIF and then link the relevant portions as a straight HTML link. A little more work, but the spiders will appreciate it.
|
oilman

msg:567402 | 10:53 pm on Mar 9, 2001 (gmt 0) |
>>The table has 3 links in it. image map that sucker and you're off to the races
|
lizzie

msg:567403 | 11:19 pm on Mar 9, 2001 (gmt 0) |
OK step one worked like a charm--the screenshot. Now I don't care if the search engines follow these links, but will they not like my page if they see links they can't follow? Also, how do I image map this sucker?
|
tedster

msg:567404 | 11:32 pm on Mar 9, 2001 (gmt 0) |
lizzie, here's a straightforward image map tutorial [htmlgoodies.earthweb.com].
|
lizzie

msg:567405 | 12:46 am on Mar 10, 2001 (gmt 0) |
Thanks everyone. OK, no image map, I need all browsers to see the links.
|
mivox

msg:567406 | 12:56 am on Mar 10, 2001 (gmt 0) |
Slice the table gif into three pieces, and re-assemble it on the page inside a 0 margin 0 cell padding/spacing table. Then link each graphic slice to wherever it needs to go.
|
tedster

msg:567407 | 1:31 am on Mar 10, 2001 (gmt 0) |
Sometimes, on a simple image slice, I can get away with just putting <br> tags between the pieces of the image (for horizontal slices) or abutting the image tags in one line with no spaces or hard returns in the HTML (if the slices are vertical). This has the advantage of not pushing the links a level "down" into a nested table structure. Spiders seem to like content that isn't nested.
|
lizzie

msg:567408 | 3:09 pm on Mar 10, 2001 (gmt 0) |
Right Tedster. My purpose of all this is to show the search engines three gifs at the top of my page instead of all the html that makes the table. Then after the gifs they will see my optimized text. Am I making sense by doing this? I do see pages in number one postion that have all the optimized text at the top of the page in a table to give the page a nice layout. In my case there is no optimized text in my table and that is what I want the search engines to see first. Right?
|
tedster

msg:567409 | 6:40 pm on Mar 10, 2001 (gmt 0) |
If you want to move text to the top of your HTML, you can use CSS and absolutely position a div which holds your sliced image. Then the code for the div can appear anywhere in the HTML. NOTE:As we discussed in another thread [webmasterworld.com], this will wreak havoc with the Google cache display. When it comes to optimization concerns for this graphic table, name your image slices well, use the alt text in each image, and name your link destination pages with your keyword strategy in mind -- all this helps. <added> I just re-read your post and see that I misunderstood what you were saying. So, only some of what I said really applies to your particular goals. </added>
|
lak12

msg:567410 | 8:37 pm on Apr 7, 2001 (gmt 0) |
Graeat topic tedster! Yeah, many designers (especially those who wrote FP) do not validate their tables for cross browser compatibility. I do use my simple validator in spider when someone submits the link URL to my site. I only check for closing </TABLE> tag as Netscape just won't show the table if it's not there. I believe the first wide use with success tables were implemented by e-bay. They use tables as rows and therefore page looks formatted while it's loading one table at the time and you do not have to wait for the whole page to load to see the results. Tables are the great tool, but new designers do not understand them completely and abuse the whole idea badly sometimes, unfortunately. Cheers. Mark.
|
|