bespokeman
06-25-2005, 09:29 AM
Hi guys - anyone know how to solve the problem .
I place a zero border around my tables in dreamweaver a nd they are fine in Explorer but the borders show up in Firefox?
How is that?
Thanks
BM
empresasdehosting
06-25-2005, 09:55 AM
can you put a link to see this ?
osbourn
06-25-2005, 04:38 PM
yeah, if you could upload the page for us it would be alot easier
WO-Jacob
06-26-2005, 04:48 AM
<table style="border-width: 0px;"> ? :)
webdevsale
06-27-2005, 03:01 PM
One major thing is that IE is very forgiving, FireFox is just a better browser.
You also may want to consider looking at doing your design in XHTML/CSS and not use tables.
It's a little different doing this type of design but your outcome will be a faster loading website and it will be better for SEO also.
Zach-E2
06-27-2005, 04:16 PM
i agree.. tables are lame. CSS/XHTML is definitely the way to go
BobbyDouglas
06-28-2005, 03:14 AM
Yeah, spend $100+ or hours of your time trying to make something into an XHTML/CSS design!
Or, replace the simple bit of code for your table, to make sure the border on the table is set to 0. If that doesn't fix your problem, you will need to provide your code.
Zach-E2
06-28-2005, 05:56 PM
man, CSS is universal, though... if you want to make a design change to all the pages, then just change the CSS, but if you do it via tables, you have to change EVERY page one page at a time. for someone with 5+ pages, this can be a huge pain in the butt
Milovan
06-28-2005, 07:29 PM
Originally posted by Zach-E2
i agree.. tables are lame. CSS/XHTML is definitely the way to go Have you considered how long would it take you to present tabular data via CSS?
Originally posted by Zach-E2
if you want to make a design change to all the pages, then just change the CSS, but if you do it via tables, you have to change EVERY page one page at a time. Why are you against tables so much? I see no evil in combining tables with CSS. What you're saying here is that tables are no good at all, while that's just so untrue.
the_pm
06-28-2005, 07:52 PM
Originally posted by Milovan
Have you considered how long would it take you to present tabular data via CSS?
Why are you against tables so much? I see no evil in combining tables with CSS. What you're saying here is that tables are no good at all, while that's just so untrue. You are correct. Tables are proper for displaying tabular data, information that requires a spreadsheet-style presentation in order to be understood in its proper context. It would be wrong to try to emulate this with CSS. The layout itself should be done using CSS and proper containers of course, but not tabular data.
Jeffreyw
06-29-2005, 01:13 AM
I've found a video tutorial on CSS on the web. If teaches you how to build table-less webpage. Just do a search on Google.
Zach-E2
06-29-2005, 02:28 PM
i'm not a hundred percent against tables, but i think that it saves the developer a lot more trouble in the long run to go with css
-T{H}R-
06-30-2005, 12:14 AM
I really ought to further look into this ... I find tables extremely restrictive.