Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #302595

    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

    • This topic was modified 10 years, 3 months ago by Munford.
    #303011

    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

    #303017

    hey thanks that worked great!

    #303025

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘portfolio grid rollovers’ is closed to new replies.