Unfortunately, it was likely your editing the site in FP that crapped up the code for the GOOD browsers. Just don't use it, it's truly a MESS.
Fix your nav list - there is absolutely NO NEED for (invalid) <p>'s with <span>s inside a <li> Put your nav items in AS LIST items and style the <li> as you want it to be.
Clear your floats inside #content by using the overflow method (see our stickies on properly clearing floats); remove the heights on the columns, there's no real need for them if the floats are properly cleared.
If you want to center that car image, use this method instead of that center <p> as you now have it:
CSS:
Quote:
|
.imgBlock{display: block; margin: xx auto;}
|
- adjust top and bottom margin as needed the auto will center the image.
HTML
Quote:
|
<img class="imgBlock" src="xxxxxx.jpg" alt="triumph to restore" />
|
Your XHTML doctype REQUIRES that ALL tags be closed, hence the / at the end of the IMG tag. The same must be applied to the line breaks you have <br /> - which, btw, are not needed. Use margins and padding to space things the way you want them.
__________________
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
|