Jump to content

(SOLUCIONADO) Eliminar linea color del encabezado de la pagina - Plantilla techmarket


Recommended Posts

Supongo que te refieres a los encabezados de los modulos, por ejemplo, (viendo tu web)

 

Fichero:

http://movil-chelin.com/themes/techmarket/css/global.css

Veo que tienes esto:

 .block .title_block,  .block h4 {
		padding:6px 11px;
		font-size:12px;
		color:#333;
		text-shadow:none;
		
		text-transform:none;

		font-weight: bold;

background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */



	}

al final del fichero, no tiene sentido tener eso.

 

Borralo, ya que mas arriba en el  mismo fichero, veo que tienes esto:

.block .title_block, .block h4 {
		padding:6px 11px;
		font-size:12px;
		color:#fff;
		text-shadow:0 1px 0 #000;
		text-transform:uppercase;
		background:#383838;
		font-weight: bold;
	}

que en tu caso cambiaras, por ejemplo asi:

.block .title_block, .block h4 {
		padding:6px 11px;
		font-size:12px;
		color:#fff;
		text-shadow:0 1px 0 #000;
		text-transform:uppercase;
		background:#fff;
		font-weight: bold;
	}
Link to comment
Share on other sites

Ah espera, te habia dicho encabezado modulos, no habia leido bien que te refierias al encabezado de la pagina.

 

Entonces en ese caso,  segun veo en tu web, lo tienes puesto como fondo del body, es decir si vas al fichero:

http://movil-chelin.com/themes/techmarket/css/global.css

Buscas en tu caso esto:

body {
background: url(../img/bg.png);
backgroun-position: top;
background-repeat: repeat-x;
}

y lo dejas asi:

body {

}

se sin el fondo al que te refieres.

Link to comment
Share on other sites

Un placer ayudarte y servirte!

Si das el tema como solucionado, edita el titulo del tema, editando el primer mensaje, pulsando en editar, y después en "Usar editor completo", añadiendo la palabra "Solucionado" al titulo, esto ayudara, a mantener una mayor organización en el foro.
 

Si no sabes como añadir la palabra "Solucionado" al título del tema, aquí tienes una guía: http://www.prestashop.com/forums/topic/269515-solucionado-%C2%BFcomo-poner-la-palabra-solucionado-en-el-titulo-del-tema/

Link to comment
Share on other sites

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