Something is wrong with jQuery.
You have this DOM change made by jQuery:
Code:
<li jQuery15106379334467028308><a href="http://www.yamahaproaudio.com/" target="_blank" title="Yamaha" ><img src="assets/logos/Yamaha.png" alt="Yamaha" /></a>
<p>Click on a brand you want and find the model you require then ring <b>08456 00 22 55</b> for the best price.</p>
</li>
making <p> a child of <li>.
The way you originally have it is like this:
Code:
<ul class="thumb">
[...]
<li><a href="http://www.yamahaproaudio.com/" target="_blank" title="Yamaha" ><img src="assets/logos/Yamaha.png" alt="Yamaha" /></a></li>
<p>Click on a brand you want and find the model you require then ring <b>08456 00 22 55</b> for the best price.</p>
</ul>
which is no better, since <p> cannot be a direct child for <ul>.
Bookmarks