Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1188397

    Hello!

    Ive got another question to this:
    https://kriesi.at/support/topic/hover-on-colum-effect/

    Is it possible to set this affect just for custom css of three _Columns?

    I dont want every 1/3 gets an hover effect.
    Thanks for the reply.

    Kind Regards

    #1189054

    Hey topnetat,

    Yes, but what kind of effect do you need? All 3 images scale up on the row hover?

    Best regards,
    Victoria

    #1189112

    Hey Victoria!

    Hmm every about the effect is nice – the Problem is – its on every 1/3 Column in the hole website. i only need the effect once? Custom CSS? How can I do this?

    Regards

    #1189282

    Hi,
    Sorry for the late reply, you can limit the effect to only one or some of your columns, to do this you will need to add a custom class to the one you want it to work on. I tried searching your pages but didn’t find the custom class “three_columns”
    If you can include admin login in the Private Content area and tell us which one you want the effect for we can assist and explain what we did should you want to do it again in the future.

    Best regards,
    Mike

    #1189503
    This reply has been marked as private.
    #1190396

    Hi,
    Sorry for the late reply, so I added the custom class “three_columns” to your css:

    .flex_column.av_one_third.three_columns {
    webkit-transition: -webkit-transform .15s cubic-bezier(.4,0,.2,1);
        transition: -webkit-transform .15s cubic-bezier(.4,0,.2,1);
        transition: transform .15s cubic-bezier(.4,0,.2,1);
        transition: transform .15s cubic-bezier(.4,0,.2,1),
        -webkit-transform .15s cubic-bezier(.4,0,.2,1);
    }
    .flex_column.av_one_third.three_columns:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    then I added the custom class to your columns on your homepage and your portfolio page:
    2020-03-05-050119
    now only the three columns on your homepage and portfolio page grow on hover, please clear your browser cache and check.

    Best regards,
    Mike

    #1190398

    Hello Mike!

    Thank you so much! This is exactly what I want. Do you could help me out in a different topic too? (in private content)

    Thanks for your answer!

    Regards

    #1190865

    Hi,
    Glad this helped, it looks like @Ismael already helped you on the other topic.
    Shall we close this thread then?

    Best regards,
    Mike

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