HI, When using the grid, there is the option to use the whole grid column as a link, when this selected the chosen grid changes colour slightly. How can I change the colour of this to a different colour?
Is it possible?
Thanks
Hey Dom,
Do you mean the overlay when hovering? If so then this is the default CSS:
.flex_cell.avia-link-column.avia-link-column-hover:hover {
opacity: 0.8;
}
You can change the opacity to your liking.
Best regards,
Rikard
Thanks for the answer, is it possible to change the colour rather than the opacity of the hover?
Hey,
No, because there is no overlay on your column background image. You could however change the background image on hover.
If you would like to do that, please edit your Grid Cell and give it a custom CSS class (“test-class” in example below) in Advanced > Developer Settings tab and then add following code to Quick CSS
body .flex_cell.avia-link-column.avia-link-column-hover.test-class:hover {
background-image: url(URL OF THE BACKGROUND IMAGE HERE) !important;
}
Regards,
Yigit