Jump to content

[solucionado] cambiar color block de busqueda


Recommended Posts

Hola vereis quiero cambiar el color del block de busqueda, imagino que se cambia en

blocksearch / blocksearch.css

alli hay lo siguiente:

#header_right #search_block_top {

float: right;

background: #e5e6e7 url('../../../img/block_search_bg.jpg') no-repeat top right;

margin-bottom: 11px;

width: 336px;

height: 28px

}

Si cambio el background no cambia el color

 

que es lo que falla?

un saludo

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

Hola vereis quiero cambiar el color del block de busqueda, imagino que se cambia en

blocksearch / blocksearch.css

alli hay lo siguiente:

#header_right #search_block_top {

float: right;

background: #e5e6e7 url('../../../img/block_search_bg.jpg') no-repeat top right;

margin-bottom: 11px;

width: 336px;

height: 28px

}

Si cambio el background no cambia el color

 

que es lo que falla?

un saludo

 

Viendo tu web, y recordando que trabajas bajo Prestashop 1.4, y bajo la plantilla de prestashop 1.4

 

Si nos vamos al fichero:

 

/themes/prestashop/css/modules/blocksearch/blocksearch.css

 

Vemos que tienes esto:

 

#header_right #search_block_top {
float: right;
background: #e5e6e7 url('../../../img/block_search_bg.jpg') no-repeat top right;
margin-bottom: 11px;
width: 336px;
color: #353d17;
height: 28px;
}

 

(Que es lo que comentas)

 

El background, en este caso, esta compuesto por una imagen y lo que resta lo rellena con un color:

 

background: #e5e6e7 url('../../../img/block_search_bg.jpg') no-repeat top right;

 

La imagen, en si es esta:

 

http://negocioxusto.com/tienda/themes/prestashop/img/block_search_bg.jpg

 

Por lo que o cambias esa imagen.

 

O dejas el background, con un color plano, tipo:

 

#header_right #search_block_top {
float: right;
background: #353D17;
margin-bottom: 11px;
width: 336px;
color: #353d17;
height: 28px;
}

Link to comment
Share on other sites

Viendo tu web, y recordando que trabajas bajo Prestashop 1.4, y bajo la plantilla de prestashop 1.4

 

Si nos vamos al fichero:

 

/themes/prestashop/css/modules/blocksearch/blocksearch.css

 

Vemos que tienes esto:

 

#header_right #search_block_top {
float: right;
background: #e5e6e7 url('../../../img/block_search_bg.jpg') no-repeat top right;
margin-bottom: 11px;
width: 336px;
color: #353d17;
height: 28px;
}

 

(Que es lo que comentas)

 

El background, en este caso, esta compuesto por una imagen y lo que resta lo rellena con un color:

 

background: #e5e6e7 url('../../../img/block_search_bg.jpg') no-repeat top right;

 

La imagen, en si es esta:

 

http://negocioxusto.com/tienda/themes/prestashop/img/block_search_bg.jpg

 

Por lo que o cambias esa imagen.

 

O dejas el background, con un color plano, tipo:

 

#header_right #search_block_top {
float: right;
background: #353D17;
margin-bottom: 11px;
width: 336px;
color: #353d17;
height: 28px;
}

Si señor pero y si quieres cambiar solo el color del boton?

Link to comment
Share on other sites

Si señor pero y si quieres cambiar solo el color del boton?

 

Añade, por ejemplo esto: (en tu caso particular)

 


#search_block_top .button {
background: #353d17;
color: #fff !important;
}

 

al fichero:

 

/themes/prestashop/css/modules/blocksearch/blocksearch.css

Link to comment
Share on other sites

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