|
First, you need to fix your coding errors.
The <script> tag belongs INSIDE the <head> section.
The <center> tag -an ugly deprecated tag that isnt' even valid in your doctype, does NOT belong outside the <body> - nothing 'wraps' around the body tags. Use CSS to center your web site - see our stickies for how to do that. In your case, remove the <center> tags and add margin: 0 auto; to your #wrapper css, that will center it w/o that nasty tag.
You've got a serious case of div-itis - what WYSIWYG editor are you using ? Typical of such programs, it produces some really horrible code.
You also shouldn't be using font sizes like "small" and "large" , specify a font size in either px or em units, you'll get much more consistent text rendering cross-browser.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|