1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Development tables????

Discussion in 'Software' started by pranks7er, 14 Nov 2003.

  1. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
    so confusing someone plz help

    need this to be created how???



    [​IMG]


    is that all seperate tables or one table with different sizes of cells

    please help with code for the tables either html or css :duh: :duh: :duh:

    ive been asked to redesin company website and ive need help 2 use tables
     
  2. RTT

    RTT #parp

    Joined:
    12 Mar 2001
    Posts:
    14,120
    Likes Received:
    74
    One table for the top two 'cells' and another below for the other three.

    Code:
    <table width="800" cellpadding="0" cellspacing="0" border="1">
     <tr>
      <td width="200">Logo</td>
      <td width="600">Title</td>
     </tr>
    </table>
    
    <table width="800" cellpadding="0" cellspacing="0" border="1">
     <tr>
      <td width="150">Nav</td>
      <td width="500">Main Body</td>
      <td width="150">Stuff</td>
     </tr>
    </table>
    
    The above will look absolutely terrible + very basic, but you should be able to see/get some idea of how it should be constructed. I set a border for the purpose of just highlighting where your cells are etc. :)
     
  3. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
    do i adjust the cell spacing to create a space between each table


    also is 800 standard size
     
  4. RTT

    RTT #parp

    Joined:
    12 Mar 2001
    Posts:
    14,120
    Likes Received:
    74
    1) yes
    2) no

    Some sites work on 100% width, some are fixed. You should aim for your site to be 800*600 compatible, which means a max of about 760px width. Or if you're using 100% width, then make sure everything fits when viewed @ 800*600.
     
  5. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
    ok then whats the easiest way 2 create this effect ???


    Fear the paint sketch!!!!




    [​IMG]

    its the curved effect i want and i would liketo put the logo and title in that curved section (ignore the 2 boxes at top)

    see i wanna learn more about tables and ur help is appreciated
     
  6. Sid

    Sid Banned

    Joined:
    13 Mar 2002
    Posts:
    1,413
    Likes Received:
    0
    :idea:

    2 tables.

    Top table. 1 row. 2 columns.

    Bottom table. 2 rows. 2 columns. Top left cell, rounded corner background image.


    Better still...use CSS and place everything exactly where you want it without being attached to tables.
     
  7. michaeln3

    michaeln3 What's a Dremel?

    Joined:
    20 May 2003
    Posts:
    49
    Likes Received:
    0
    I'd do almost the same thing, except I'd have a table on top, 1 row, two columns, and a bottom table, with two rows, the first one colspan=3, the second with three columns.
    PHP:
    <table>
      <
    tr>
        <
    tdfirst boxtop left</td>
        <
    tdlarge boxtop right</td>
      </
    tr>
    </
    table>

    <
    table>
      <
    tr>
        <
    td colspan=3>the whole row with the rounded thing on it</td>
      </
    tr>
      <
    tr>
        <
    td>left sidebar</td>
        <
    td>main part of page</td>
        <
    td>right sidebar</td>
      </
    tr>
    </
    table>
     
  8. Sid

    Sid Banned

    Joined:
    13 Mar 2002
    Posts:
    1,413
    Likes Received:
    0
    Didn't notice the bit over at the right hand side.

    3 x 3 for the bottom table.
     
  9. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
    thanks
     

Share This Page