Bought this today - nice plugin - working ok but a couple of things I'd like to be able to do;
1) Borders around each grid item - am using flat grid and happy with most of the styling options but would like to be able to put a border around the whole item (the picture and the text) with variable px and colour.
2) Some form of hover effect for the flat item (or a new skin like the flat item but with a border and hover effects)
I know that you say that new skins can be added but I'm not a coder so options would be good or CSS that can be applied...
Cheers, Nick
Welcome to our forum.
There is a custom CSS input field. so you can add your own styling, like if you want to add the border on items, please use following CSS
.post-grid .item { border: 1px solid #ddd; }
By post grid id.
#post-grid-6 .item{ border: 1px solid #ddd; }
For hover effects
.post-grid .item:hover { border: 1px solid #ddd; } .post-grid .item{ border: 1px solid rgba(0,0,0,0); }