SlideShare una empresa de Scribd logo
1 de 2
Descargar para leer sin conexión
PASOS PARA BOTONES DE LLAMADOS A LA ACCIÓN  
Este son los códigos que necesitarás para crear los botones para tu sitio web. 
 
Copia el código y pegalo en la caja de CUSTOM CSS. 
/*-----------------------[Botón CTA]-------------------------*/ 
/*-----------------[por Emma Saldierna]----------------*/ 
.cta {border-radius: 0px;} 
.cta a {color: #fff!important;} 
li.cta { 
background-color:#0d3b69; 
font-weight: 700; 
text-transform: uppercase; 
text-align: center; 
padding: 12px 13px 10px 10px!important; 
border-radius: 3px; 
-moz-transition: all 0.5s; 
-webkit-transition: all 0.5s; 
transition: all 0.5s;} 
li.cta:hover {background-color:#febb4a;} 
  
/* fixed header button text color */ 
.et-fixed-header #top-menu .cta a { 
color: #fff!important;} 
.cta li.current-menu-ancestor > a, .cta li.current-menu-item > a { 
color: #fff!important;} 
  
@media only screen and (min-width : 981px) { 
li.cta {height: 33px;}} 
/*-----------------[FIN]----------------*/ 
___________________________________________________________________________ 
 
Código de “etiqueta de navegación”. Este es el que va en el menú: 
<span class="et_pb_more_button et_pb_button">​TU TEXTO AQUI​</span> 
_________________________________ 
Código que va en la opción de “estilos personalizados CSS” 
/*Menu CTA Button*/ 
#et-top-navigation .et_pb_button { 
margin-top: 0px; 
font-size: inherit; 
font-weight: inherit; 
} 
  
#et-top-navigation .et_pb_button:after { 
font-size: 23px; 
}

Más contenido relacionado

Similar a BOTONES DE LLAMADOS A LA ACCION DE WORDPRESS

Manual facturacion e2011 maxicomercio
Manual facturacion e2011  maxicomercioManual facturacion e2011  maxicomercio
Manual facturacion e2011 maxicomercio
armando casiano
 

Similar a BOTONES DE LLAMADOS A LA ACCION DE WORDPRESS (19)

Oferta Depapaya PDF, Ag 22 2010
Oferta Depapaya PDF, Ag 22 2010Oferta Depapaya PDF, Ag 22 2010
Oferta Depapaya PDF, Ag 22 2010
 
Manual facturacion e2011 maxicomercio
Manual facturacion e2011  maxicomercioManual facturacion e2011  maxicomercio
Manual facturacion e2011 maxicomercio
 
Practica
PracticaPractica
Practica
 
Cómo realizar una configuración inicial del router
Cómo realizar una configuración inicial del routerCómo realizar una configuración inicial del router
Cómo realizar una configuración inicial del router
 
VISUAL CAJA 3D x2 instructivo
VISUAL CAJA 3D x2 instructivoVISUAL CAJA 3D x2 instructivo
VISUAL CAJA 3D x2 instructivo
 
9 PASOS PARA GENERAR EL CÓDIGO CNC CON SOLIDWORKS CAM - Easyworks.pdf
9 PASOS PARA GENERAR EL CÓDIGO CNC CON SOLIDWORKS CAM - Easyworks.pdf9 PASOS PARA GENERAR EL CÓDIGO CNC CON SOLIDWORKS CAM - Easyworks.pdf
9 PASOS PARA GENERAR EL CÓDIGO CNC CON SOLIDWORKS CAM - Easyworks.pdf
 
Como Crear un Blog desde cero.
Como Crear un Blog desde cero.Como Crear un Blog desde cero.
Como Crear un Blog desde cero.
 
Que es AS2 y como se implementa
Que es AS2 y como se implementaQue es AS2 y como se implementa
Que es AS2 y como se implementa
 
Conexión AS2 para la transferencia de documentos electrónicos XML/EDI
Conexión AS2 para la transferencia de documentos electrónicos XML/EDIConexión AS2 para la transferencia de documentos electrónicos XML/EDI
Conexión AS2 para la transferencia de documentos electrónicos XML/EDI
 
Principios básicos del router
Principios básicos del routerPrincipios básicos del router
Principios básicos del router
 
Colegio nacional nicolas esguerr1
Colegio nacional nicolas esguerr1Colegio nacional nicolas esguerr1
Colegio nacional nicolas esguerr1
 
Colegio nacional nicolas esguerr1
Colegio nacional nicolas esguerr1Colegio nacional nicolas esguerr1
Colegio nacional nicolas esguerr1
 
MANUAL AS2 CRM
MANUAL AS2 CRMMANUAL AS2 CRM
MANUAL AS2 CRM
 
Agrupando datos en SQL Server
Agrupando datos en SQL ServerAgrupando datos en SQL Server
Agrupando datos en SQL Server
 
Tips en la instalación de Dynamics 365 Finance and Operations On Premise - LBD
Tips en la instalación de Dynamics 365 Finance and Operations On Premise - LBDTips en la instalación de Dynamics 365 Finance and Operations On Premise - LBD
Tips en la instalación de Dynamics 365 Finance and Operations On Premise - LBD
 
Cómo realizar una configuración inicial del switch
Cómo realizar una configuración inicial del switchCómo realizar una configuración inicial del switch
Cómo realizar una configuración inicial del switch
 
In 10
In 10In 10
In 10
 
Estilo & CSS3
Estilo & CSS3Estilo & CSS3
Estilo & CSS3
 
10
1010
10
 

BOTONES DE LLAMADOS A LA ACCION DE WORDPRESS

  • 1. PASOS PARA BOTONES DE LLAMADOS A LA ACCIÓN   Este son los códigos que necesitarás para crear los botones para tu sitio web.    Copia el código y pegalo en la caja de CUSTOM CSS.  /*-----------------------[Botón CTA]-------------------------*/  /*-----------------[por Emma Saldierna]----------------*/  .cta {border-radius: 0px;}  .cta a {color: #fff!important;}  li.cta {  background-color:#0d3b69;  font-weight: 700;  text-transform: uppercase;  text-align: center;  padding: 12px 13px 10px 10px!important;  border-radius: 3px;  -moz-transition: all 0.5s;  -webkit-transition: all 0.5s;  transition: all 0.5s;}  li.cta:hover {background-color:#febb4a;}     /* fixed header button text color */  .et-fixed-header #top-menu .cta a {  color: #fff!important;} 
  • 2. .cta li.current-menu-ancestor > a, .cta li.current-menu-item > a {  color: #fff!important;}     @media only screen and (min-width : 981px) {  li.cta {height: 33px;}}  /*-----------------[FIN]----------------*/  ___________________________________________________________________________    Código de “etiqueta de navegación”. Este es el que va en el menú:  <span class="et_pb_more_button et_pb_button">​TU TEXTO AQUI​</span>  _________________________________  Código que va en la opción de “estilos personalizados CSS”  /*Menu CTA Button*/  #et-top-navigation .et_pb_button {  margin-top: 0px;  font-size: inherit;  font-weight: inherit;  }     #et-top-navigation .et_pb_button:after {  font-size: 23px;  }