Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21

Thread: Coding Tables.

  1. #11
    Join Date
    Nov 2007
    Location
    London
    Posts
    1,577
    Tokens
    36

    Latest Awards:

    Default

    Quote Originally Posted by Calon View Post
    Fireworks CS3.

    But tables are very.. terrible, it shows your lack of skills if you code in tables, and you're using a generator which makes you a failure of a web designer.
    You guys have assumed wrong, you can code layouts in tables and not use a generator and it is very good coding that can be expandable and works well. However, tables are designed for data and not for layouts, but until CSS was created, they were the only things you could use.

    Quote Originally Posted by redtom View Post
    Don't use tables for coding layouts at all, go straight to divs.

    Tables are not for coding layouts.
    Tables indeed are for coding layouts also, as more websites are coded in tables than divs. However, it is more up-to-date to code in divs, but in my view, if you code in tables properly, it's perfectly as good.

    I can code in both, incase you're wondering...

    www.HFFM.co.uk is coded in tables, but it's good coding, it works well and is good. So what it's not divs, it still works well.
    Kind Regards,

    Guy
    __________________

    Since 2007. Unbelievable Uptime. Web hosting, resellers, master resellers, linux VPS, windows VPS, shoutcasts, at the lowest prices on the net.
    Tech-Hosts.co.uk.


  2. #12
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by iUnknown View Post
    You guys have assumed wrong, you can code layouts in tables and not use a generator and it is very good coding that can be expandable and works well. However, tables are designed for data and not for layouts, but until CSS was created, they were the only things you could use.



    Tables indeed are for coding layouts also, as more websites are coded in tables than divs. However, it is more up-to-date to code in divs, but in my view, if you code in tables properly, it's perfectly as good.

    I can code in both, incase you're wondering...

    www.HFFM.co.uk is coded in tables, but it's good coding, it works well and is good. So what it's not divs, it still works well.
    Because divs are much more dynamic, divs are so better, tables are cluttered and load slower than DIVs.

  3. #13
    Join Date
    Nov 2007
    Location
    London
    Posts
    1,577
    Tokens
    36

    Latest Awards:

    Default

    With all these new optic fibres all over the place, everything loads so quickly it doesn't even matter anymore. I do agree though, divs are more dynamic and it can be easier to integrate cool javascript into your layout.
    Kind Regards,

    Guy
    __________________

    Since 2007. Unbelievable Uptime. Web hosting, resellers, master resellers, linux VPS, windows VPS, shoutcasts, at the lowest prices on the net.
    Tech-Hosts.co.uk.


  4. #14
    Join Date
    Dec 2006
    Posts
    3,970
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by iUnknown View Post
    With all these new optic fibres all over the place, everything loads so quickly it doesn't even matter anymore. I do agree though, divs are more dynamic and it can be easier to integrate cool javascript into your layout.
    The problem with tables is the browser takes a long time to display them, tables are only ment for organising data, so doing a whole layout in them takes ages to load.
    Lets set the stage on fire, and hollywood will be jealous.

  5. #15
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    1,544

    Latest Awards:

    Default

    Quote Originally Posted by iUnknown View Post
    You guys have assumed wrong, you can code layouts in tables and not use a generator and it is very good coding that can be expandable and works well. However, tables are designed for data and not for layouts, but until CSS was created, they were the only things you could use.



    Tables indeed are for coding layouts also, as more websites are coded in tables than divs. However, it is more up-to-date to code in divs, but in my view, if you code in tables properly, it's perfectly as good.

    I can code in both, incase you're wondering...

    www.HFFM.co.uk is coded in tables, but it's good coding, it works well and is good. So what it's not divs, it still works well.
    No tables are not for coding layouts :rolleyes:

  6. #16
    Join Date
    May 2008
    Posts
    605
    Tokens
    0

    Default

    Tables are for tabular data - not layouts. CSS is much more organized and complies with todays current web-standards. CSS minimizes the code of a website by something like 50-55% I read? Tables look dirty and cluttered everywhere, you can also tell a site is coded in tables because a lot of the time you get minimal errors that you wouldn't in divs such as positioning when text is inputted.

  7. #17
    Join Date
    Jan 2008
    Posts
    3,711
    Tokens
    100

    Latest Awards:

    Default

    Quote Originally Posted by Meti View Post
    If you want to "cheat", use ImageReady and slice the layout in parts. Then save the images and html code.

    your code will be something like this from the beginning:
    <tr>
    <td rowspan="2">
    <img src="images/picture.gif" width="200px" height="20px">
    </td>
    </tr>

    You have to change it to:
    <tr>
    <td rowspan="2" background="images/picture.gif" width="200px" height="20px">
    </td>
    </tr>

    But.. It's better if you code with div's
    Quote Originally Posted by Excellent1 View Post
    That just showed me you know nothing about coding.
    Will be something like that..

  8. #18
    Join Date
    Dec 2006
    Posts
    3,970
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by iUnknown View Post
    You guys have assumed wrong, you can code layouts in tables and not use a generator and it is very good coding that can be expandable and works well. However, tables are designed for data and not for layouts, but until CSS was created, they were the only things you could use.



    Tables indeed are for coding layouts also, as more websites are coded in tables than divs. However, it is more up-to-date to code in divs, but in my view, if you code in tables properly, it's perfectly as good.

    I can code in both, incase you're wondering...

    www.HFFM.co.uk is coded in tables, but it's good coding, it works well and is good. So what it's not divs, it still works well.
    The <table> tag explains its self - Its for putting data into a table. Not for coding a layout.
    Lets set the stage on fire, and hollywood will be jealous.

  9. #19
    Join Date
    Dec 2006
    Location
    Swindon
    Posts
    3,299
    Tokens
    215
    Habbo
    dunko

    Latest Awards:

    Default

    Quote Originally Posted by Tom743 View Post
    The <table> tag explains its self - Its for putting data into a table. Not for coding a layout.
    And the <div> tag just screams out

    "CODE A LAYOUT USING ME"

    does it?

  10. #20
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    1,544

    Latest Awards:

    Default

    Quote Originally Posted by Blob View Post
    And the <div> tag just screams out

    "CODE A LAYOUT USING ME"

    does it?
    Yeah you must be deaf

Page 2 of 3 FirstFirst 123 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •