Hi, I am preparing a display of posts using the "Tiles" layout. The images are displayed in different sizes (because they are saved as different sizes in the media library). I tried to follow your instructions at https://getpostgrid.com/docs/how-to-set-custom-thumbnail-size-for-image/ but I couldn't follow the guide.
How do I set the images to be displayed at the same size when using the "Tiles" layout?
Thank you.
Phil.
This answer is regarding a request that you've made to add a hover effect and link appearance on your grid. Please copy and paste the CSS code below under your existing CSS code.
Screenshot: https://ibb.co/93JwRDh
.post-grid.tiles .skin.flat .layer-wrapper{
position: relative !important;
}
.post-grid.tiles .skin.flat .layer-wrapper:after{
content: '' !important;
display: block !important;
width: 100% !important;
height: 100% !important;
background-color: rgba(128, 128, 128, .8) !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
transform: translateY(45px) !important;
opacity: 0 !important;
z-index: -1 !important;
transition: all .3s ease !important;
}
.post-grid.tiles .skin.flat .layer-wrapper:hover:after{
opacity: 1 !important;
z-index: 99 !important;
transform: translateY(0) !important;
}
.post-grid.tiles .skin.flat .layer-wrapper:hover .element.title a{
text-decoration: underline !important;
}
Let us know if it works.
Would you mind writing a review for our plugin? It'll inspire us a lot.
You can post your review here - https://wordpress.org/support/plugin/post-grid/reviews
Thank you so much.
Thanks for the link. I just wrote a tiny CSS that will resolve the issue of hiding content on 'mouse hover'. And for the pagination, I can see the number is already there, but the backgroundColor and textColor are the same. So I have also overridden it with CSS.
Please copy the CSS code below and paste it under Custom Scripts => Custom CSS option.
Screenshot: https://ibb.co/93JwRDh
Code:
.post-grid.tiles .skin.flat .layer-content{
z-index: 999 !important;
}
.post-grid .pagination .page-numbers{
color: #fff !important;
}
Let us know if you need any help.
Regards.
Hi,
Welcome to PickPlugins.
Under Layouts, could you please check what layout you're using? Currently, tiles will work with a layout that uses absolute position property.
From our Layouts library, please install a layout called ContentBottom.
Screenshot: https://ibb.co/rfcBV0w
Then under Layouts, make sure you've selected the layout for your tiles grid.
Screenshot: https://ibb.co/ScF1H6d
Let us know if it works.
Regards.
I can see you’re currently editing.
Please note CSS codes are currently available only on the grid called ‘Test layout for africa events’.
You can copy all the CSS from the last grid to get the same effect.
However, there is an option to Duplicate that’ll save you some time. If you duplicate the grid, all the code automatically inherits your new grid.
Screenshot: https://i.ibb.co/Xsp5ZwP/pick-issue-one.png