Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1354329

    Hi! I need to add a custom hover effect on a column and am using the following css

    .service:hover {
      background-color: white; padding: 2px; border-radius: 1px; border-color: #00afef !important;
    }

    With this code the white background appears on hover but no border.

    #1354331

    Nevermind, I got it:

    .service:hover {
     background-color: white; padding: 2px; border-width: 3px;
    	border-style: solid; border-color: #00afef !important;
    }
    #1354337

    Another question – is there a way for the hover effect not to cause the content and icon to jump down a few pixels? I would like the hover effect to be static.

    #1354349

    Hi tiffanytnttobol,

    Try adding this CSS code just above the code you posted:

    .service {
        border: 3px solid transparent !important;
    }

    Hope this helps.

    Best regards,
    Nikko

    #1354447

    That worked perfect, thank you so much!

    #1354464

    Hi tiffanytnttobol,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Colum Hover Effect’ is closed to new replies.