strlitejumper
02-08-2005, 12:22 AM
I have a simple little set up inside some frames but I cannot get the names under "Our Team" to line up to the left. If you could look at the page Id appreciate it.
www.wacycling.tk
www.wacycling.tk
|
View Full Version : Could someone please help me out... strlitejumper 02-08-2005, 12:22 AM I have a simple little set up inside some frames but I cannot get the names under "Our Team" to line up to the left. If you could look at the page Id appreciate it. www.wacycling.tk Monkey Bizzle 02-08-2005, 01:04 AM For starters, your code is totally messed up... you are missing the most important tags! the basic structure of an HTML document is this: <html> <head> <title>your title here</title> all <styles> and most <scripts> go here </head> <body> All content goes here </body> </html> You don't have ANY of those... and you have random end tags thrown around in there, and you have more than one <style> section when you should only have one... I would suggest cleaning up your code and fixing all your errors and then see if that randomly fixes your problem... Ashe 02-08-2005, 01:10 AM Ok.. first of all your frame needs to have <html> tags and your css needs to be in the head tags Your problem may be that your td tag is set to center and not left. You also have and ending span tag with no beginning span tag. I think those may be your problems. |