I have a website where I would like to display logos of different games with links attached to them. I have managed to adjust the size of the image on hover, but now I am looking for a way to keep the size bigger after clicking on the link. Is there a simple solution for this? I haven't found anything straightforward so far, only some jQuery and JavaScript codes related to background color changes. Here is the code snippet:
<table id="containerlogos" style="width: 1200px; height: 150px;">
<tr>
<td id="pkmn"><a href="http://www.pkmnpro.cz"></a></td>
<td id="ygo"><a href="http://www.ygopro.cz"></a>
</td>
<td id="mtg"><a href="http://www.mtgpro.cz"></a>
</td>
<td id="hs"><a href="http://www.svet-karet.cz/?page_id=7"></a></td>
</tr>
</table>
and the corresponding CSS styles:
... ...For the complete working version, visit this link.