Okay
  Public Ticket #808860
Help with CSS Slide Revolution
Closed

Comments

  •  13
    Lula started the conversation

    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

  • [deleted] replied

    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;
    }
    
  •  13
    Lula replied

    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

  • [deleted] replied

    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;
    }
  •  13
    Lula replied

    Hi, Ylli

    Perfect! thanks a lot

    Lula