Jump to content

(SOLUCIONADO) Descuadre de cuadricula en los articulos.


Recommended Posts

Por ejemplo a modo express, puedes ir a tu fichero:

http://netcombyte.es/themes/PRS030072/css/product_list.css

Buscar esto:

ul#in_grid li {
float: left;
padding: 0;
position: relative;
text-align: center;
vertical-align: top;
width: 192px;
border-bottom: 1px dotted #DDDDDD;
border-right: 1px dotted #DDDDDD;
}

y añadir un height fijo tipo:

ul#in_grid li {
float: left;
padding: 0;
position: relative;
text-align: center;
vertical-align: top;
width: 192px;
border-bottom: 1px dotted #DDDDDD;
border-right: 1px dotted #DDDDDD;
height: 220px;
overflow: hidden;
}

Y luego en el mismo fichero, buscar esto:

#product_list li h3 {
padding: 0;
font-size: 13px;
color: #000;
margin-left: 15px;
text-align: left;
}

y dejarlo asi:

#product_list li h3 {
padding: 0;
font-size: 13px;
color: #000;
margin-left: 15px;
text-align: left;
height: 41px;
overflow: hidden;
}
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...