Yep, the template is a mess in Firefox. Learning to make sites cross-browser friendly is a learning curve and if you've only been at it 6 months, you have a loooonnnggg way to go.
As for the code:
You do not have a valid DOCTYPE, and you have numerous validation errors.
This is NOT the correct way to apply styles to multiple elements:
Quote:
#home a, a:visited a:active {
background: url(images/home.jpg) no-repeat scroll;
width: 100%;
height: 72
}
|
If you want the styles applied to a, a:visited and a:active, you must
list them as #home a, #home a:visited, #home a:active
height:72 -- 72 WHAT ? You MUST give it a unit - px, em, or %
Get in the habit of putting a semi-colon at the end of EVERY rule, including the last one.
Quote:
|
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|