Hi, I have a masonry gallery with 1px line between the columns and I want to know how to add the same 1px white line above the gallery?
Thanks.
Hey DROR,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
#top.page-id-93588 #wrap_all #main #av_section_2.avia-no-border-styling {
border-bottom-style: solid !important;
border-bottom-color: #fff !important;
}
Best regards,
Mike
Hi Mike, that adds a border to the top and on the right side and it’s bigger than 1px.
how can I make it 1px and make it show only above the gallery and not to the right of it?
Thanks.
Hi,
To make the border 1px, try this css:
#top.page-id-93588 #wrap_all #main #av_section_2.avia-no-border-styling {
border-bottom: 1px solid #fff !important;
}
but the side border was there before this css:
To correct, please try this css:
#top.page-id-93588 #wrap_all #main #av-masonry-1 .av-masonry-container.isotope {
width: 101% !important;
}
Best regards,
Mike