By Anton on Friday, 09 November 2018
Posted in Technical Issues
Likes 0
Views 478
Votes 0
Hi,
I need your help. On the page https://www.pravoslavnaya-biblioteka.ru/biblioteka.html
I need to do, that between every element was a distance 5px (margin).

Help me, please, what I need to change.

Thanks.
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

I've applied this following CSS under your site backend > Easyblog > theme > custom css


body #eb .eb-blog-grid__item--6 {
margin-bottom: 5px;
}


Can you check again is it meet your requirement now?
·
Saturday, 10 November 2018 10:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for your help, but I need besides, that between the elements was 5px too, between left and right.

The problem is, when I write margin (for everywhere), it outputs wrong (see in screenshot)
·
Saturday, 10 November 2018 16:25
·
0 Likes
·
0 Votes
·
0 Comments
·
I've applied this following Custom css, it should display correctly now.


body #eb .eb-blog-grid__item--6 {
margin-bottom: 5px;
margin-right: 5px;
}

/* adjust the grid 2 column able to fit it together */
body #eb .eb-blog-grid__item--6 {
-webkit-flex: 0 0 48%;
-ms-flex: 0 0 48%;
flex: 0 0 48%;
}
·
Saturday, 10 November 2018 17:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks a lot. On desktop computer now it is good. But in responsive in mobile it is not in the center, because of 48% wich we use now (see on screenshot)
May be we can write something in code for mobile.

Thanks...
·
Saturday, 10 November 2018 17:58
·
0 Likes
·
0 Votes
·
0 Comments
·
I've applied this following css, it should display correctly now.


body #eb.is-mobile .eb-blog-grid {
display: contents;
}
·
Sunday, 11 November 2018 09:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks a lot!
·
Sunday, 11 November 2018 22:26
·
0 Likes
·
0 Votes
·
0 Comments
·
You're most welcome.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding
·
Monday, 12 November 2018 10:01
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post