One td is stretching another down, suggestions?

Discussion in 'HTML & Website Design' started by Crayz, Dec 23, 2007.

  1. #1
    Hey, if you look here:
    http://aggressivegaming.com/newsite/

    you will see that under the navigation box, when I put a bunch of <br>'s in there, it pulled down the news on the right.

    Does anyone know how I could fix this?

    Thanks!
     
    Crayz, Dec 23, 2007 IP
  2. nicangeli

    nicangeli Peon

    Messages:
    828
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #2
    My suggestion would be to stop using <table>'s for non tabular data. Learn CSS and make layouts purly using (x)HTML and CSS.

    As far as the code goes on your website, you need a <head> element.

    Here is what it should be, (roughly)

    
    <html>
    <head>
    <title>
    Aggresive Gaming
    </title>
    <link rel="Stylesheet" media="screen,projector" href="style.css type="text/css">
    </head>
    <body>
    <!--
    Your code here
    -->
    </body>
    </html>
    
    Code (markup):
    I know, this will not solve your problem!
     
    nicangeli, Dec 23, 2007 IP
  3. Crayz

    Crayz Well-Known Member

    Messages:
    708
    Likes Received:
    9
    Best Answers:
    1
    Trophy Points:
    120
    #3
    The site is still in progress, I've been using includes to put everything together for the ease of writing my script.
    The head portion is still to come :p

    And yea, I am using css.
     
    Crayz, Dec 23, 2007 IP