Hi I have a few questions:
on this page: http://wp.marlowfilm.dk/#top
1. down at the section with the portfolio grid, I want the images to have a transparency on the rollover, like they do now without the arrow circle icon, but when they open in lightbox they also have a transparency rollover – which I don’t want. I used this:
.image-overlay { display: none !important; }
img:hover {
opacity: 0.5 !important;
}
how can I set it so the lightroom images don’t have the rollover effect?
2. how can I set it to display in 2 (or whatever) columns on the mobile instead of one – or is it possible to have one image in a slideshow on the mobile instead of stacking like they do now?
3. Can I set a small space between the items in the grid?
thanks for your help
N
Hey Munford!
1. Add this:
.mfp-content img:hover{
opacity: 1 !important;
}
2-3. Try:
@media only screen and (max-width: 767px) {
.grid-entry.feature-films_sort {
width: 50% !important;
padding: 5px;
}
}
Cheers!
Josue
hey thanks that worked great!
You are welcome, always glad to help :)
Regards,
Josue