Borders around Post Grid Grid Items

Ticket for: Combo Blocks
0
Borders around Post Grid Grid Items 1
nick.a.beck
Jan 19, 2019 01:00 AM 1 Answers
Member Since Jan 2019
Subscribed Subscribe Not subscribe
Flag(0)

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

2 Subscribers
Borders around Post Grid Grid Items 1
Borders around Post Grid Grid Items 3
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
Borders around Post Grid Grid Items 4
PickPlugins
Jan 19, 2019
Flag(0)

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);
}

 

Sign in to Reply
Replying as Submit