Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #275072

    Hi Kriesi Team,


    I have a question for my website:

    I would like a “slowly progressive” white opacity mousehover effect on home layerslider, the same to your portfolio effects (just the white opacity transition).

    Currently i have a white background and an image layer with a class “survolslide” and the quick css:

    `. survolslide {
    opacity: 0;
    }

    . survolslide: hover {
    opacity: 0.7;
    }

    But my transition is too fast.

    Do you have a solution?
    Is it possible just to change the name of my class because the effect is already in css?

    Website link:
    http://www.espace-graphique.fr/newsite/

    Thanks for your help!

    egraphique

    #275453

    Hi egraphique!

    Thank you for using the theme!

    Please try this on Quick CSS or custom.css.

    .survolslide {
    transition: opacity 0.5s ease;
    opacity: 0;
    }
    
    .survolslide: hover {
    opacity: 0.7;
    }

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.