0
barcin
Hello, your Post Grid plugin works perfectly for me. However, I wonder if following things are possible to do (using custom scripts, or by purchasing the paid version of the plugin):
- Let's say I have 4 grid items (posts), and grid item width set to 33%. 3 posts are in the first row, and the 4th post is in the next row, but it is centered. Is it possible to make it appear on the left side?
- Is it possible to use 'flat' skin (post title etc. underneath the thumbnail) on mobile devices only? I am happy with captions appearing on hover on desktop, but on mobile there is no hover.
Thank you for your support!
3 Subscribers
Submit Answer
1 Answers
Best Answer
1
Welcome to our forum.
#1. item elements css depend on layout editor css, you can set text-align: left
http://imgur.com/a/Hble7
or you can use following CSS under custom CSS input box to apply all items,
.post-grid .item { text-align: left; }
http://imgur.com/a/WehZl
#2. sorry this feature isn't available right now, but interesting to me, if possible i will update it next version.
Regards
#1, please try following CSS
.post-grid .grid-items {
text-align: left;
}
float property may cause issue with other items, no matter if its works fine.
#2. i also love to update new feature, will try to bring it.
#3. you need to add your own CSS to override by "!important"
Regards