Jump to content

[SOLUCIONADO] Cambiar tamaño letra "Aceptar condiciones generales"


Recommended Posts

Buenos días,

 

Durante el proceso de compra hay una parte en la que tras escoger el método de envío se debe marcar la casilla "he leído las condiciones de venta, etc."

 

condiciones_generales.jpg

 

Necesito cambiar el tamaño de letra de esa frase para que se vea más grande sin que afecte al resto de textos.

 

Para ello había pensado en asignarle una H pero mis limitados conocimientos de CSS me lo impiden...

 

Podríais decirme como debo proceder?

 

La url es http://nutri-cosmetica.com

 

Gracias!

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

En el fichero:

 

Busca esto:

 

<label for="cgv">{l s='I agree to the Terms of Service and will adhere to them unconditionally.'}</label> <a href="{$link_conditions}" class="iframe">{l s='(Read Terms of Service)'}</a>

 

Y luego lo dejas asi:

 

<div id="pepe"><label for="cgv">{l s='I agree to the Terms of Service and will adhere to them unconditionally.'}</label> <a href="{$link_conditions}" class="iframe">{l s='(Read Terms of Service)'}</a></div>

 

Y luego a #pepe en el global.css le aplicas un estilo.

Link to comment
Share on other sites

Hola Nadie,

 

Gracias por tu respuesta... antes de proceder con ello tengo una duda... en el global.css donde debo colocar la nueva clase "pepe"? Es importante su ubicación o es indiferente?

 

En cualquier caso, la nueva clase debería ser algo así?:

 

#pepe .label {
fontsize: 18px;
}

 

Gracias!

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

Hola Nadie,

 

Gracias por tu respuesta... antes de proceder con ello tengo una duda... en el global.css donde debo colocar la nueva clase "pepe"? Es importante su ubicación o es indiferente?

 

En cualquier caso, la nueva clase debería ser algo así?:

 

#pepe .label {
fontsize: 18px;
}

 

Gracias!

 

Seria asi:

 

#pepe {font-size:15px;}

 

Por cierto, depende con div, dejalo con span, que sino se baja..

 

Es decir dejalo asi:

 

<span id="pepe"><label for="cgv">{l s='I agree to the Terms of Service and will adhere to them unconditionally.'}</label> <a href="{$link_conditions}" class="iframe">{l s='(Read Terms of Service)'}</a></span>

Link to comment
Share on other sites

Sí disculpa, estoy aplicando tus instrucciones... sin embargo no veo cambios al recargar la página.

 

Quizás debo compilar?

 

Edito: he forzado compilación y sigo sin apreciar cambios... :unsure:

 

¿Pero has modificado el tpl?

Link to comment
Share on other sites

¿Pero has modificado el tpl?

 

sí, te comento exactamente lo que he hecho:

 

archivo order-carrier.tpl de mi tema:

 

{if $conditions AND $cms_id}
   <p class="checkbox no_margin">
       <input type="checkbox" name="cgv" id="cgv" value="1" {if $checkedTOS}checked="checked"{/if} />
       <span id="terminos"><label for="cgv">{l s='I agree to the Terms of Service and will adhere to them unconditionally.'}</label> <a href="{$link_conditions}" class="iframe">{l s='(Read Terms of Service)'}</a></span>
   </p>
   <script type="text/javascript">$('a.iframe').fancybox();</script>
{/if}

 

 

Archivo global.css de mi tema

 

#terminos {font-size:15px;}

 

Hice algo mal? :unsure:

Link to comment
Share on other sites

sí, te comento exactamente lo que he hecho:

 

archivo order-carrier.tpl de mi tema:

 

{if $conditions AND $cms_id}
<p class="checkbox no_margin">
	<input type="checkbox" name="cgv" id="cgv" value="1" {if $checkedTOS}checked="checked"{/if} />
	<span id="terminos"><label for="cgv">{l s='I agree to the Terms of Service and will adhere to them unconditionally.'}</label> <a href="{$link_conditions}" class="iframe">{l s='(Read Terms of Service)'}</a></span>
</p>
<script type="text/javascript">$('a.iframe').fancybox();</script>
{/if}

 

 

Archivo global.css de mi tema

 

#terminos {font-size:15px;}

 

Hice algo mal? :unsure:

 

Yo no veo esto:

 

#terminos {
font-size: 15px;
}

 

en tu css ..

  • Like 1
Link to comment
Share on other sites

Lo siento, había subido el archivo css a la carpeta equivocada :P

 

Ahora ya funciona! voy a retocarlo para que termine de quedar bonito...

 

Muchas gracias Victor!

 

Modificaré el hilo como SOLUCIONADO :lol:

 

Un placer ayudarte y servirte!

 

Un saludo y recuerda que estaremos en el foro, para guiarte por este mundo oscuro y tenebroso.

 

Feliz semana santa !!!

Link to comment
Share on other sites

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