.post-body:first-letter { float:left; color: #333333; font-size:100px; font-family:none; line-height:80px; padding-top:1px; padding-right:5px; } font-style: italic; } span.letracapital{ float: left; font-size: 40px; line-height: 35px; /* Dobla el alto de linea menos 1 pixel */ font-family: Georgia, "Times New Roman", Times, serif; color: #2583ad; /* Azul */ padding-right: 5px; } -->

Recent Posts

Mas toptip

11 jun 2020
Hoy vamos a enseñaros como poner un tooltip en nuestras entradas
Hover over me Tooltip text

Para ello lo primero que tenemos que hacer es  vamos a Tema > HTML 
Busca la etiqueta ]]></b:skin> y añade este bloque encima:

a.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
</style>


Ahora, siempre que quieras insertar el enlace con el tooltip usa esta línea:

Enlace<div class="tooltip">TITULO DEL ENLACE<span>EL TEXTO DEL TOOLTIP</span></a

Puedes visitar este enlace para ver màs

Texto Tooltip text

No hay comentarios:

Publicar un comentario

Deja tu comentario y en breve te contestaremos