Jump to content

Texto en encabezado para poner etiqueta H1


xavivila

Recommended Posts

En caso de que quieras dejarlo como te muestro en la imagen:

 

tat.png

 

Te comento una opción de las muchas que hay.

 

Paso 1

 

Podemos editar el fichero:

 

/themes/prestashop_new/header.tpl

 

Buscamos esto:

 

<a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}">
 <img class="logo" src="{$img_ps_dir}logo.jpg?{$img_update_time}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />
</a>

 

Y justo debajo añadimos esto:

 

{$if page_name=='index'}
<div id="nadielove"><h1>{l s='Lo que quieras colocar....'}</h1></div>{/if}

 

Guardamos los cambios.

Link to comment
Share on other sites

Paso 3 - Ajustar CSS....

 

Fichero:

 

/themes/prestashop_new/css/global.css

 

Añadimos esto:

 

#index #header_right {
clear: both;
float: right;
margin-top: -136px;
width: 435px;
}

 

al

 

/themes/prestashop_new/css/global.css

 

De esta manera el ajuste solo afectara a la home.

Link to comment
Share on other sites

A modo general. *

 

 

Fichero:

 

/themes/prestashop_new/css/modules/blockuserinfo/blockuserinfo.css

 

Por cierto, he visto que tienes el carrito un poco rarillo en la cabecera en tu caso particular..

 

Busca esto:

 

#header_right #header_user {
clear: both;
float: right;
width: 535px;
}

 

Y dejalo asi:

 

#header_right #header_user {
clear: both;
float: right;
width: 534px;
margin-top: -28px;
margin-bottom: 10px;
}

Link to comment
Share on other sites

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