Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi,
I have another question if you could help me please
I've added a text layer on a slide (revolution slider) and to this text I've added an action to make it a link.
Now I would like to remove the CSS link default mouseover (hover) underline.
I've tried with a custom CSS using a class:
.aslider a:hover {
text-decoration: none; !important;
}
and I've applied this class to the text layer in the classes field "attributes" tab ....
but it did not work ... the mouseover underline is still showing .
Could you help me with this ... is this the right approach? or how should I get around this?
Many Thanks
Lula
Hi Lula,
I didn't tested this code but i saw a problem on your CSS, it should be:
.aslider a:hover { text-decoration: none !important; }Hi, Ylli
I fixed the code but it's still not removing the underline ...
Is this the right approach? or there is another way around this?
many thanks
Lula
Hi Lula,
I managed to solve this for you, so please just add this code below to Custom CSS
.tp-caption:after {
background-color: transparent !important;
}
Hi, Ylli
Perfect! thanks a lot
Lula