Soldato
- Joined
- 15 Feb 2003
- Posts
- 10,173
- Location
- Europe
I am trying to create a table 9 cells by 9cells that will display logos. On hover the logo should enlarge itself. The standard logos are 80x80px the upstate logos are 90x90px.
The actual table cells are 100x100px.
Why is it then that when I hover over one of the logos and it enlarges, it moves all of the others in the table.
The code is below, and the webpage is; http://www.uttingsinsurance.co.uk/testimonials.html
Thanks
The actual table cells are 100x100px.
Why is it then that when I hover over one of the logos and it enlarges, it moves all of the others in the table.
The code is below, and the webpage is; http://www.uttingsinsurance.co.uk/testimonials.html
Code:
<table style="height: 325px;" border="0" cellspacing="5" cellpadding="5" width="307">
<tbody>
<tr>
<td style="height: 100px;" "width:"100;"><a href="[~35~]">
<p><img title="ArrowPak" onmouseover="this.src='/assets/images/clientlogos/arrowpak_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/arrowpak_upstate.jpg';" src="assets/images/clientlogos/arrowpak_upstate.jpg" alt="ArrowPak" /></p>
</a></td>
<td style="height: 100px;" "width:"100;">
<p><img title="BTO" onmouseover="this.src='/assets/images/clientlogos/bto_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/bto_upstate.jpg';" src="assets/images/clientlogos/bto_upstate.jpg" alt="BTO" /></p>
</td>
<td style="height: 100px;" "width:"100;">
<p><img title="Abels" onmouseover="this.src='/assets/images/clientlogos/abels_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/abels_upstate.jpg';" src="assets/images/clientlogos/abels_upstate.jpg" alt="Abels" /></p>
</td>
</tr>
<tr>
<td style="height: 100px;" "width:"100;">
<p><img title="Horse Welfare" onmouseover="this.src='/assets/images/clientlogos/horse_welfare_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/horse_welfare_upstate.jpg';" src="assets/images/clientlogos/horse_welfare_upstate.jpg" alt="Horse Welfare" /></p>
</td>
<td style="height: 100px;" "width:"100;">
<p><img title="More Solutions" onmouseover="this.src='/assets/images/clientlogos/More_solutions_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/More_solutions_upstate.jpg';" src="assets/images/clientlogos/More_solutions_upstate.jpg" alt="More Solutions" /></p>
</td>
<td style="height: 100px;" "width:"100;">
<p><img title="MJB" onmouseover="this.src='/assets/images/clientlogos/MJB_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/MJB_upstate.jpg';" src="assets/images/clientlogos/MJB_upstate.jpg" alt="MJB" /></p>
<br /></td>
</tr>
<tr>
<td style="height: 100px;" "width:"100;">
<p><img title="Petrell" onmouseover="this.src='/assets/images/clientlogos/petrell_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/petrell_upstate.jpg';" src="assets/images/clientlogos/petrell_upstate.jpg" alt="Petrell" /></p>
</td>
<td style="height: 100px;" "width:"100;">
<p><img title="Seat" onmouseover="this.src='/assets/images/clientlogos/nvcmotors_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/nvcmotors_upstate.jpg';" src="assets/images/clientlogos/nvcmotors_upstate.jpg" alt="Seat" /></p>
</td>
<td style="height: 100px;" "width:"100;">
<p><img title="Staff call" onmouseover="this.src='/assets/images/clientlogos/staffcall_downstate.jpg';" onmouseout="this.src='/assets/images/clientlogos/staffcall_upstate.jpg';" src="assets/images/clientlogos/staffcall_upstate.jpg" alt="staff call logo" /></p>
</td>
</tr>
</tbody>
</table>
Thanks