Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #442086

    Hello,

    How do I hide the first item/entry in a masonry portfolio?

    I tried this, but that doesn’t work:

    #av-masonry-2 .av-masonry-container a:nth-child(0) {
    			visibility: hidden !important;
    			display: none !important;
    			opacity: 0 !important;
    		}

    and

    #av-masonry-2 .av-masonry-container a:first-child {
    			visibility: hidden !important;
    			display: none !important;
    			opacity: 0 !important;
    		}

    But doesn’t work.

    #442383

    Nothing I have tried seems to work. Maybe I’m not using the right ID’s or Classes, but I can’t see where else it should be put…

    #442415

    Hey!

    Can you please post the link to your website and point out the element you would like to hide?

    Cheers!
    Yigit

    #442446
    This reply has been marked as private.
    #442452

    Hi!

    Please add following code to Quick CSS

    #av-masonry-2 a:nth-child(2) {
      display: none!important;
    }

    Regards,
    Yigit

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.