Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1272837

    Hello @Yigit,
    in this thread i asked you how to hide the description from a masonry gallery on a mobile:
    kriesi.at/support/topic/issue-with-masonry-on-mobile/

    You gave me a CSS and now i found out that also the description of the masonry portfolio on mobiles is gone also.

    Exactly this makes me meanwhilde beeing fed up.
    I ask for a solution and what i get is another issue somewehere else instead

    Once again:
    Hide the description for a masonry gallery on mobile.
    DONT hide the description for a masonry blog/post/portfolio.
    How?

    Marcus

    #1273104

    Hey MarcusJeroch,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1273692

    Like so often: You are not even willing to read what i posted.
    That is why i dont want to be “supported” by you.


    @yigit
    ….it was you who gave me that advice…..so please come back to fix it.
    thanks

    PS: Your “support” made me to write a review on themeforest

    #1273788

    Hi Marcus,

    I do not see myself in that thread but I see the issue :)

    Please change following code

    
    @media only screen and (max-width: 767px) {
       .av-inner-masonry-content {
    	display: none !important;
        }
    }

    into following one

    @media only screen and (max-width: 767px) {
       .av-masonry-gallery .av-inner-masonry-content {
    	display: none !important;
        }
    }

    “av-masonry-gallery” selector here makes sure code is only applied on Masonry Gallery elements.

    In case you need to apply this to a certain Masonry Gallery element only, I would recommend you to edit your Masonry Gallery element and give it a custom CSS class (“my-custom-gallery” in example below) in Advanced > Developer Settings and use the code as following one

    @media only screen and (max-width: 767px) {
       .my-custom-gallery .av-inner-masonry-content {
    	display: none !important;
        }
    }

    Best regards,
    Yigit

    #1274050

    “I do not see myself in that thread”
    OK, you are right, my mistake, sorry.
    It works, thanks!
    I hope you get at least the double amount of money then your collegues. ;-)

    Marcus

    #1274083

    Hi Marcus,

    No worries at all! I am glad it works now :)

    Please let us know if you have any other questions or issues and enjoy the rest of your day!

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Again Issue with masonry’ is closed to new replies.