Hi !
Could you please take a look at the example below?
http://www.screencast.com/t/9nP4FBCYMc1
Two questions
1. How Can I build image gallery without margins and full width ?
2. Can I implement image change on mousse over (For example, Black and White pic and when mousse over we see the image in color), should be same image ( the first one B and W and the second one color)
Hey gzelasco,
Add a masonry gallery and in the gallery options select “No gap” for “Gap between elements”.
To add a images effect on hover Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.av-masonry-image-container img {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
filter: gray;
-webkit-transition: all .6s ease; }
.av-masonry-image-container img:hover {
filter: grayscale(0%);
-webkit-filter: grayscale(0%);
filter: none; }
}
Best regards,
Vinay
Thanks ! How to get the column to 100% width of the screen ?
Already done ! Thanks