Thanks for your support. Also I use a javascript code to reload images and I put the code in the article:
{source}<script type="text/javascript">
var maxCantImagenes = 4;
function obtenerRandom()
{
var ranNum = Math.floor(Math.random() * (maxCantImagenes));
return ranNum;
}
function obtenerImagenes() {
document.getElementById('imgCuerda').src = "img/cuerda" + obtenerRandom() + ".jpg";
document.getElementById('imgLibro').src = "img/libro" + obtenerRandom() + ".jpg";
document.getElementById('imgMochila').src = "img/mochila" + obtenerRandom() + ".jpg";
document.getElementById('imgPesca').src = "img/pesca" + obtenerRandom() + ".jpg";
document.getElementById('imgPrimerosAuxilios').src = "img/primerosauxilios" + obtenerRandom() + ".jpg";
document.getElementById('imgSubmarinismo').src = "img/submarinismo" + obtenerRandom() + ".jpg";
}
</script>
<style type="text/css">
.titulosCategoriasVenta
{
text-align:center;
font-family:Verdana;
font-size:medium;
font-weight:bold;
text-decoration:none;
color:Maroon;
}
</style>
<script type="text/javascript">
obtenerImagenes();
</script>
{/source}
Then, I create a table with images with this code:
<table align="center" border="1" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td>
<table style="text-align: center;" border="0">
<tbody>
<tr>
<td style="vertical-align: bottom;"><a href="Cuerdas"><img src="javascript:obtenerImagen();" alt="Cuerdas" title="Cuerdas" id="imgCuerdas" border="0" /><br /><span class="titulosCategoriasVenta">Cuerdas</span> </a></td>
<td style="vertical-align: bottom;"><a href="Libros"><img src="img/libro0.jpg" alt="Libros" title="Libros" id="imgLibro" border="0" /><br /><span class="titulosCategoriasVenta">Libros</span></a></td>
<td style="vertical-align: bottom;"><a href="Mochilas"><img src="img/mochila0.jpg" alt="Mochilas" title="Mochilas" id="imgMochila" border="0" /><br /><span class="titulosCategoriasVenta">Mochilas</span></a></td>
</tr>
<tr>
<td style="vertical-align: bottom;"><a href="Pesca"><img src="img/pesca0.jpg" alt="Pesca" title="Pesca" id="imgPesca" border="0" /><br /><span class="titulosCategoriasVenta">Pesca</span></a></td>
<td style="vertical-align: bottom;"><a href="Primeros-auxilios"><img src="img/primerosauxilios0.jpg" alt="Primeros Auxilios" title="Primeros Auxilios" id="imgPrimerosAuxilios" border="0" /><br /><span class="titulosCategoriasVenta">Primeros Auxilios</span></a></td>
<td style="vertical-align: bottom;"><a href="Submarinismo"><img src="img/submarinismo0.jpg" alt="Submarinismo" title="Submarinismo" id="imgSubmarinismo" border="0" /><br /><span class="titulosCategoriasVenta">Submarinismo</span></a></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
I don't know how can repair it?
See you and best regards!