Css para Webs en elementor:
* Para sacar subrayado de menú
<style>
.elementor-item:hover, .elementor-item:focus {
text-decoration: none;
}
</style>
* Para sacar el subrayado en texto con enlaces
a:hover {
text-decoration: none;
}
CSS para web en HTML
Forma #1:
<style>
A {text-decoration: none;}
</style>
0 Comentarios