On my site,
Portfolio Page
https://alexandere77.sg-host.com/portfolio – using enfold portfolio
Press Page
https://alexandere77.sg-host.com/press – using blog posts
How can I make the press thumbnails the SAME size as the portfolio thumbnails? Currently there are more space between the press/blog items than the portfolio items
Thanks
Hey navindesigns,
Thank you for the inquiry.
The size of the thumbnails in the pages above are now the same. Did you manually select a thumbnail in the Styling > Grid Settings > Portfolio Grid Image Size settings? For the blog posts element, you can select a different thumbnail in the Styling > Appearance > Preview Image Size settings.
Best regards,
Ismael
Sorry I meant the space between columns . see screenshot below
PORTFOLIO
https://ibb.co/FXGv1GH – I like this spacing
PRESS
https://ibb.co/N3Nw9x7 – I want this spacing to match the portfolio spacing above
The goal is to make both pages look visually the same (although they are two different things , portfolio and press)
Hi,
Thank you for the clarification.
We can use the css code below to adjust the width and left margin of the blog entries. Please note that the margin of the portfolio grid is pixel-based while the blog posts is percentage-based so they might not look exactly the same.
div .slide-entry.av_one_third {
margin-left: 3%;
width: 31.3333332%;
}
div .slide-entry.av_one_third.first {
margin-left: 0;
}
The margin between the portfolio grid entries is 40px. The css code above should decrease the space between the post items and get you closer to that 40px gap.
Best regards,
Ismael