1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

HTML Design trouble

Discussion in 'Web Development' started by 355th_Sniped, Mar 27, 2008.

  1. 355th_Sniped

    355th_Sniped New Member

    Hi im currently using a self modified version of the Call Of Duty 2 template. For one of my pages i want to put a table, or some other design to list Members of the clan. I have tryed html tables and obviously they are not very easy to use. I was looking a CSS but i have never used tables before in my css therefore im not entirely sure about it.

    If anyone could help with the coding problem or even specify a better, more stylish way of listing members it would be great.

    Thanks,
    355th_Sniped
     
  2. Riley

    Riley New Member

    Sure, I'll help. Just send the template and I'll repost it with a table and the tutorial on how to.
     
  3. 355th_Sniped

    355th_Sniped New Member

    Below is the CSS and then the HTML page itself.

    Thanks for the qiuck reply.
    355th_Sniped
     
  4. Riley

    Riley New Member

    Re: 355th_Sniped

    Code:
    <table border="1">
    <tr>
    <th>Name</th>
    <th>Rank</th>
    </tr>
    <tr>
    <td>NAMEHERE</td>
    <td>NAMEHERE</td>
    </tr>
    <tr>
    <td>RANKHERE</td>
    <td>RANKHERE</td>
    </tr>
    </table>
     
  5. 355th_Sniped

    355th_Sniped New Member

    Thanks riley, i had tried that and they always seemed to go outside my template. I have worked out what i need to do now, just specify exactly how wide and high i want my cells. Silly me i thought there may have been a way to do this in css, but i geuss not.

    Thanks again
    355th_Sniped