First of all, you have a number of things wrong in your code;
Quote:
<style type="text/css">
<!--
|
You cannot use html-style comments inside the <style> tags, you have to use /* xxx */ to comment out code.
Secondly, you have this error in your css:
Quote:
background-color: #FFF;
}
|
That bit of css is just hanging in the middle and is not properly formatted nor applied to anything.
You also have javascript stuck inside the <style></style> tags, that won't work either, it cannot be there.
Once you fix these errors, you'll see improvements in your page.
__________________
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
Last edited by LadynRed; 07-31-2010 at 03:53 PM..
|