GFXVoid Graphic Design Forum

Remove Text Formatting
Loading...

» Online Users: 430

0 members and 430 guests
No Members online

» Site Navigation

 > FAQ

» Stats

Members: 35,443
Threads: 103,072
Posts: 826,684
Top Poster: cc.RadillacVIII (7,429)
Welcome to our newest member, Lekelindids
Page 1 of 3 123 LastLast
Results 1 to 10 of 22
  1. #1
    Join Date
    Jan 2005
    Location
    La Habra, Cali
    Posts
    124

    Default

    I've always been told 'master tables and you've pretty much mastered html'. So, here's how to creat a table. it will be a simple one. Tables can be used for layouts (for those who dont like iFrames, Taco (= ) well here it is :

    Code:
    <table>
     * <tr>
     * * *<td> Text here</td>
     * </tr>
    
     *<tr>
     * * *<td> This Appears Next To "Text here"</td>
     *</tr>
    </table>
    Ok the way that works:

    <table> - this is the beggining of the table. it starts it off. you can put the width and height of the table here.

    <tr> - this starts a new row. The one going horizontally.

    <td> - this is a column. also known as a cell. The table is made up of cells.

    </tr> </td> </table> - these tags just close the previous stated.

  2. #2
    Join Date
    Feb 2005
    Location
    va
    Posts
    29

    Default

    yes but if you use a pure table site you will need an iframe if you want your content to load in a specific box as you can&#39;t point a link to a table

  3. #3
    Join Date
    Jan 2005
    Location
    La Habra, Cali
    Posts
    124

    Default

    Or you can have the same table, same layout and such, and have it all load again. with the content you wish. There are simple ways to avoid using iframes, i myself use iframes quite alot.

  4. #4
    Join Date
    Feb 2005
    Location
    va
    Posts
    29

    Default

    ya but that way makes every page a huge mess of tables which is hard to edit

  5. #5
    Join Date
    Jan 2005
    Location
    La Habra, Cali
    Posts
    124

    Default

    Originally posted by tfc_generalKMK@Feb 25 2005, 09:14 PM
    ya but that way makes every page a huge mess of tables which is hard to edit
    [snapback]10506[/snapback]
    Yes, that is why i&#39;ve been told &#39;Master tables, and you&#39;ve mastered html&#39;. If you can get around tables very well you will be pretty set for any type of layout. doesn&#39;t matter how big the mess of tables is.

  6. #6
    Join Date
    Feb 2005
    Location
    va
    Posts
    29

    Default

    ya i prefer css layouts take a look at ultimategaming.info/pesronal.php that is all layout using absolute positioning and divisions in the main html page

  7. #7
    Join Date
    Jan 2005
    Location
    La Habra, Cali
    Posts
    124

    Default

    Well then, how about you post some css tuts? you like them so much (= I use html/css/js for making websites. mostly html and css

  8. #8
    Join Date
    Dec 2004
    Location
    GFXVoid
    Posts
    4,412

    Default

    You dont need iframes, you can create pages with content inside the tables - or use php includes. Iframes are HORRIBLE - and should be avoided at all times.

    Thanks for your submission mate&#33;

  9. #9
    Join Date
    Feb 2005
    Location
    va
    Posts
    29

    Default

    sure why not =) i will start working on a 3 layout using pure css tutorial based off of my personal site (honestly i may just post my code for it and then show the css sheet for it also lol

  10. #10
    Join Date
    Feb 2005
    Posts
    22

    Default

    I, personally, use tables quite a bit. They offer a great deal of control over page and content layout, are cross-browser & backwards compatible, and are more flexible than positioned elements in many cases.

    The typical layout of a basic website can be quickly defined and easily tweaked with this simple Table:

    Code:
    &#60;table&#62;
     * * &#60;tr&#62;
     * * * * *&#60;td colspan=&#34;2&#34;&#62;Header Content&#60;/td&#62;
     * * &#60;/tr&#62;
     * * &#60;tr&#62;
     * * * * *&#60;td&#62;Left Content&#60;/td&#62;
     * * * * *&#60;td&#62;Main Content&#60;/td&#62;
     * * &#60;/tr&#62;
    &#60;/table&#62;
    It&#39;s a pain, for instance, to center positioned elements in the browser window (particularly in Mozilla browsers), which makes having a "centered" website difficult to achieve across all browsers without scripting. However, adding a simple align="center" attribute to your <table> tag will accomplish this effect in just about any browser.

    dmeister

Similar Threads

  1. Create a Contact Table
    By tacoX in forum Battlegrounds
    Replies: 3
    Last Post: 10-24-2005, 10:46 PM
  2. Periodic Table
    By Twan in forum Sigs & Manips
    Replies: 30
    Last Post: 07-20-2005, 10:08 AM
  3. Simple Orb Tutorial
    By Skarjoko in forum Other Tutorials
    Replies: 12
    Last Post: 07-14-2005, 05:59 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Powered by vBadvanced CMPS v4.1.1