Hello,
I want to create a research page in a gallery or magazine layout that I can tag so you can sort. Is this possible? My understanding is with gallery and portfolio I’m only showing images, and with magazine they link to posts. I want to link directly to the PDF.
Thanks,
GGLN
Hi GGLNetwork!
Thank you for using Enfold.
You can use the portfolio items then set the pdf file link on Overwrite Portfolio Link setting > Define custom link. Use the portfolio grid element. Or use the Masonry Gallery element then set a custom link on the gallery items.
Cheers!
Ismael
Thanks so much. Can you help me determine how to make the gallery items all the same size and a square? They’re coming out as rectangles.
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.page-id-220 .container .av-masonry-entry { width: 20%!important; }
Images are square. You can display caption on hover to avoid the issue you are having
Cheers!
Yigit
Thanks Yigit! Can you also tell me how to make the background for the caption – currently white – semi-opaque?
I tried this:
.page-id=220 .box .av-masonry-entry {
background: rgba(255,255,255,0.5);
}
and this:
.template-page.content .box{
background: rgba(255,255,255,0.5);
}
but no luck. Thank you so many time over, this project is draining me.
Hey!
Please use the code as following
.page-id-220 figcaption.av-inner-masonry-content {
background-color: rgba(255,255,255,0.5)!important;
}
You should not use ‘equals’ sign when entering page id into CSS
Regards,
Yigit
Thank you so much Yigit!