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!
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!
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 And yea, I am using css.