24, July 2008

Tables V CSS - webmaster forum

 
Webdigity webmaster forums
This forum shares its ad revenue with its members!
[ Home | Help | Search | Forum's Shop | Archive | Login | Register | Webmaster Directory ]
Webdigity Webmaster Forums  >  Design and Layout  >  Web Page Design (Moderator: Meth0d)
Topic: Tables V CSS
« previous next »
Pages: [1] 2 Print

Author Topic: Tables V CSS  (Read 2423 times)
Cyberpunk Wannabe
*
Posts: 45
0 credits
Members referred : 0



« on: Aug 29, 2005, 07:47:52 PM »

Hi,

Im just about to undertake a new project and wondered if I should use tables for my layout or go completely table free using CSS?

Whats everyones opinions on this?
I am a metal monkey!
Administrator
Community Supporter ?
Jedai Sword Master
*****
Gender: Male
Posts: 7974
40801 credits
Members referred : 3



« Reply #1 on: Aug 29, 2005, 09:18:21 PM »

You mean xhtml? Is it possible to avoid tables with css and how can you do that?

Trial and Error my two best teachers Cool
Join us @ facebook Visit through proxy

Last blog : MIA - Where Nick and Tim
Cyberpunk Wannabe
*
Posts: 45
0 credits
Members referred : 0



« Reply #2 on: Aug 29, 2005, 11:31:40 PM »

Yeah, apparantly - although I have never done it before - you can create your site completely table free using CSS to position all your content and navigation.
Bill Cosby is my Father
*
Posts: 4
0 credits
Members referred : 0


« Reply #3 on: Aug 29, 2005, 11:54:47 PM »

Yeah it can be done - although im no expert in CSS and struggle to get everything spot on using just CSS. However i have seen some great examples of table-less designs over at www.oswd.org Visit through proxy. Its an open source template site and has loads of nice decent templates that are completely table free, ok they are not spectacular looking but you can get an idea of what you can do Smiley
Cyberpunk Wannabe
*
Posts: 45
0 credits
Members referred : 0



« Reply #4 on: Aug 30, 2005, 12:27:00 AM »

Yeah it can be done - although im no expert in CSS and struggle to get everything spot on using just CSS. However i have seen some great examples of table-less designs over at www.oswd.org Visit through proxy. Its an open source template site and has loads of nice decent templates that are completely table free, ok they are not spectacular looking but you can get an idea of what you can do Smiley

there some pretty nice designs there when you think that they are all done with CSS! I would really like to go this route - however I have heard rumours that it doesnt make for a SEO friendly site. Has anyone got any knowldege on this?
I wish I was an Oscar winner
**
Posts: 86
247 credits
Members referred : 0



« Reply #5 on: Aug 30, 2005, 02:10:09 PM »

No. CSS is ok with search engines. And actually a lot of people using css to optimize their sites.

For example you can use the h1 tag (which is very common used for SEO) and optimize it to be smaller than it usual is :

Code:
h1
{
     font-size:9px;
     font-weight:regular;
}
Credit Thief
.com pimp
*****
Posts: 1118
0 credits
Members referred : 0



« Reply #6 on: Aug 31, 2005, 04:07:44 PM »

I'm working a site for my self that has no tables and uses CSS. You may want to look at it:
http://www.perosnal.saskwebs.com Visit through proxy

Its all positioned.

You would use something like this:

<style type="text/css">

#div1
{
position:absolute;
left: 30px;
top: 20px;
}
</style>



Then in the html/xhtml you would put:
<div id="div1">
This div is postioned 20 pixels from the top of the page and 30 pixels from the right.
</div>

Novice Spammer
***
Gender: Female
Posts: 101
0 credits
Members referred : 0



« Reply #7 on: Aug 31, 2005, 11:05:52 PM »

I do table-less XHTML/CSS coding for clients, so yes it is possible! Cheesy

The important thing when coding table-less layouts though, is making sure your layout is cross-browser/platform compaitible. That's the difficulty in CSS, not just coding it table-less, because of rendering differences in browsers. There are still a large number of internet users using IE5.5, and a page that looks good on IE6 may not look so hot in 5.5.

I'd still say go for CSS over tables - loads faster and its great for SEO.
Cyberpunk Wannabe
*
Posts: 45
0 credits
Members referred : 0



« Reply #8 on: Sep 02, 2005, 10:27:29 PM »

No. CSS is ok with search engines. And actually a lot of people using css to optimize their sites.

For example you can use the h1 tag (which is very common used for SEO) and optimize it to be smaller than it usual is :

Code:
h1
{
     font-size:9px;
     font-weight:regular;
}

Can I  just ask - what would be the benefit of making it smaller? Are you talking about just an asthetics view or something else?
I wish I was an Oscar winner
**
Posts: 86
247 credits
Members referred : 0



« Reply #9 on: Sep 03, 2005, 05:01:37 AM »

I was talking about asthetic
Novice Spammer
***
Posts: 100
103 credits
Members referred : 0



« Reply #10 on: Sep 13, 2005, 04:25:44 PM »

XHTML is okay, I prefer tables.
Cyberpunk Wannabe
*
Posts: 40
280 credits
Members referred : 0


« Reply #11 on: Sep 15, 2005, 10:31:52 PM »

Go for tabless css/xhtml. It avoids most of the IE bugs, and it's much more search engine friendly. Not to mention the page loads quciker and it's easier to edit.
He's The Man
Novice Spammer
***
Gender: Male
Posts: 100
0 credits
Members referred : 0



« Reply #12 on: Sep 17, 2005, 06:28:54 PM »

CSS is much better. In the future I don't think anyone will use tables for layout anymore. Check out this website for more information on CSS design and start learning!
http://www.csszengarden.com Visit through proxy

It is amazing what you can do with css. All of the designs on this page use the same xhtml code, the only thing that is changed is the CSS and the images.
My Name is Enigo Montoya
*
Gender: Female
Posts: 33
260 credits
Members referred : 0



« Reply #13 on: Sep 17, 2005, 06:35:18 PM »

That's a very nice resource Adrevel.

Thanks for sharing Smiley
Sandwich Artist
*
Posts: 24
28 credits
Members referred : 0



« Reply #14 on: Sep 18, 2005, 01:09:53 PM »

I'm afraid I'm still guilty of keeping sites with tables - it's an old habit that I couldn't get rid of until now!  This means that I now have to go back and redesign my old sites using CSS.  I know it's going to be a lot of work, but I like doing it Smiley  I'm actually excited Smiley
Forum's pretty lady
Metal slug addict
*
Gender: Female
Posts: 19
82 credits
Members referred : 0



« Reply #15 on: Sep 18, 2005, 01:16:24 PM »

I'm afraid I'm still guilty of keeping sites with tables - it's an old habit that I couldn't get rid of until now! This means that I now have to go back and redesign my old sites using CSS. I know it's going to be a lot of work, but I like doing it Smiley I'm actually excited Smiley

And you will be more excited when you see your sites loading faster Smiley
He's The Man
Novice Spammer
***
Gender: Male
Posts: 100
0 credits
Members referred : 0



« Reply #16 on: Sep 18, 2005, 05:19:25 PM »

I'm still trying to convert into a CSS coder Sad I'm finding it difficult to learn, I don't know why. It is just so much different than coding with tables.
Magus computerista
General's Aide
***
Gender: Male
Posts: 129
86 credits
Members referred : 0



« Reply #17 on: Sep 19, 2005, 03:55:17 PM »

You
I'm still trying to convert into a CSS coder Sad I'm finding it difficult to learn, I don't know why. It is just so much different than coding with tables.

You just need some experience with CSS. Think how difficult it was to code with tables when you was at the beginning

Smiley
Novice Spammer
***
Gender: Male
Posts: 100
346 credits
Members referred : 0



« Reply #18 on: Sep 19, 2005, 11:29:28 PM »

This CSS stuff looks interesting, maybe I should start coding with it.
Global Moderator
Internet Junkie
*****
Gender: Male
Posts: 1517
6803 credits
Members referred : 8


Gimme all your cookies!!!


« Reply #19 on: Nov 17, 2005, 04:35:40 AM »

I say use css all the way! I use it instead of tables these days cause it is better for control of the site and SE friendly! The last site I did was all css and it got PR6 with google in 6 weeks! If you are interested - www.liezelscause.com Visit through proxy


Last blog : Site of the Month - August 2007
Trackback URI for this entry : http://www.webdigity.com/trackback.php?topic=31
Tags : google pagerank internet explorer xhtml programming Bookmark this thread : Digg Del.icio.us Dzone more....

Topic sponsors:
Get a permanent link here for $1.99!


Pages: [1] 2 Print 
Webdigity Webmaster Forums  >  Design and Layout  >  Web Page Design (Moderator: Meth0d)
Topic: Tables V CSS
« previous next »
Jump to:
User Area
Welcome, Guest. Please login or register.
Did you miss your activation email?
Jul 24, 2008, 10:50:35 AM





Login with username, password and session length

Donate to our community, and get a permanent link back to your site!

Donate to our community, and get a permanent link back to your site!


Forum Statistics
Total Posts: 35.711
Total Topics: 7.376
Total Members: 3.706
Tutorials : 56
Resources : 143
Designs : 220
Latest Member: FortuneBeach

39 Guests, 4 Users online :

12 users online today:



Readers

Web Design Gallery · Whois Lookup · Pagerank · Tag Browsing · Lo-fi version · Syndication · Webmaster forum history · Advertise
Developed by HumanWorks © 2005 - 2008 Webdigity webmaster community · sublime directory
Webdigity Webmaster Forums | Powered by SMF 1.0.12. © 2001-2005, Lewis Media. All Rights Reserved.