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.
Nevermind, I got it:
.service:hover {
background-color: white; padding: 2px; border-width: 3px;
border-style: solid; border-color: #00afef !important;
}
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.
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
That worked perfect, thank you so much!
Hi tiffanytnttobol,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko