Ok, well I fixed a few more things in your code purely for validation purposes, I was bored so:
A few of the things are to do with links that have an "&" in them, and you can relplace this with "&" so change:
Code:
<span class="txt_4" style="font-size:1.03em;">Checkout</span> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_cart&business=4N4DBNX7EVKSY&display=1"><img src="images/cart-checkout-trans.png" alt="View Cart" class="up3" /></a>
to this:
Code:
<span class="txt_4" style="font-size:1.03em;">Checkout</span> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_cart&business=4N4DBNX7EVKSY&display=1"><img src="images/cart-checkout-trans.png" alt="View Cart" class="up3" /></a>
also, later on you use "°", but you neglect to close it with a ";" which will also give you an error.
so change this line from:
Code:
<p>Did you know that cooler air intake can dramatically improve your vehicle's performance? Studies have shown that a functioning cowl hood reduces the IAT (intake air temperature) which can improve your vehicle's performance. Temperature reduction can range anywhere from between <span class="txt_4">2-3°</span> at a standstill, to <span class="txt_4">7-11°</span> while in motion (depending on speed).</p>
to:
Code:
<p>Did you know that cooler air intake can dramatically improve your vehicle's performance? Studies have shown that a functioning cowl hood reduces the IAT (intake air temperature) which can improve your vehicle's performance. Temperature reduction can range anywhere from between <span class="txt_4">2-3°</span> at a standstill, to <span class="txt_4">7-11°</span> while in motion (depending on speed).</p>
You can also take out the "</div>" on line 143 as you don't need it.
This should get rid of most of the errors, but the others are to do with the doctype you've chosen which I can't really do much about.
Hope it is the gallery causing the problem anyway, at least it narrows it down.
Bookmarks