Jump to content

(SOLUCIONADO) Alinear en cuadricula subcategorias.


Recommended Posts

Siguiendo un post del foro llegue a uno donde se explicaba donde poner las subcategorias en modo cuadricula concretamente esta solucion fue la que segui.

http://victor-rodenas.com/2013/02/16/guia-mostrar-subcategorias-en-grid-cuadricula-en-prestashop-1-5/

 

Pero al revisar las subcategorias veo que estan todas puestas una debajo de la otra alguna ayuda para esto?

 

post-679858-0-51721300-1381606613_thumb.jpg

Edited by Sandfield (see edit history)
Link to comment
Share on other sites

Indicar que aquí:

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

has puesto esto:

.inline_list  li {
	padding:10px 0;
	border-bottom:1px dotted #ccc
        float: left;
        width:89px;
}

y te has comido un ";", en todo caso asi:

.inline_list  li {
	padding:10px 0;
	border-bottom:1px dotted #ccc;
        float: left;
        width:89px;
}

pero vamos tambien a que añadir un height, etc... sigue la guía de vekia: http://mypresta.eu/en/art/developer/prestashop-subcategories-grid.html

Link to comment
Share on other sites

Bah, en base a lo que tienes en tu fichero:

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

Realiza las siguientes modificaciones.

 

Busca esto:

.inline_list  li {
	text-align: center;
  float: left;
  display: inline-block;
  width: 96px;
  height: 100px;
  border: 1px dotted #ccc;
  margin: 4px;
}

Y dejalo así:

.inline_list li {
text-align: center;
float: left;
display: inline-block;
width: 134px;
height: 100px;
border: 1px dotted #ccc;
margin: 4px;
padding-bottom: 2px;
}

Despues, en el mismo fichero, busca esto:

.inline_list  li .cat_name {
	font-weight:bold;
	font-size:13px
}

y dejalo asi:

.inline_list li .cat_name {
font-weight: bold;
font-size: 13px;
clear: both;
display: block;
height: 30px;
overflow: hidden;
}

(Atención no te comas los ";")

 

Despues, en el mismo fichero, busca esto:

.inline_list  li .img {
	display: block;
        float: left;
        margin-left: 15px;
}

Y dejalo asi:

.inline_list li .img {
display: block;
float: left;
margin-left: 31px;
margin-top: 7px;
}
Link to comment
Share on other sites

Otra vez te has comido los ";"

 

Has puesto esto:

.inline_list  li .cat_name {
	font-weight:bold;
	font-size:13px
clear: both;
display: block;
height: 30px;
overflow: hidden;
}

Depende esto:

.inline_list  li .cat_name {
	font-weight:bold;
	font-size:13px;
clear: both;
display: block;
height: 30px;
overflow: hidden;
}
Link to comment
Share on other sites

 

Otra vez te has comido los ";"

 

Has puesto esto:

.inline_list  li .cat_name {
	font-weight:bold;
	font-size:13px
clear: both;
display: block;
height: 30px;
overflow: hidden;
}

Depende esto:

.inline_list  li .cat_name {
	font-weight:bold;
	font-size:13px;
clear: both;
display: block;
height: 30px;
overflow: hidden;
}

 

 

Adjunto Imagen

 

puntoycoma.png

Link to comment
Share on other sites

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