Hi,
I am trying to create an image hover effect in sections; the banner should be full width and go from a black and white version of the image to a color one. I got the hover effect to work by assigning a custom class to the section, but it will not show up as full width. Here is the css I used:
.banner {
width: 100%;
background: url(“/imageBW.jpg”) no-repeat;
display: inline-block;
}
.banner:hover {
background: url(“/image.jpg”) no-repeat;
}
Is there anyway to create an hover effect either in headers or sections?
Thanks!