Hey, yes, to enlarge the circles use the following snippet in your child theme’s style.css file:
/* Changing the size of circles with no thumbnail */
.hentry.no-thumbnail{
border-radius: 220px;
width: 220px;
max-width: 220px;
height: 220px;
max-height: 220px;
}
/* Changing the size of circles with a thumbnail */
.hentry {
width: 220px;
height: 220px;
}
.blog .hentry a .attachment-post-thumbnail{
border-radius: 220px;
}
.blog .hentry a:hover img{
border-radius: 220px;
}
Change the values of the border-radius, max-width, width, max-height and height attributes as you wish. It’s important that all five attributes are of equal value to each other in order to maintain the circle’s shape.
To change the amount of space between the circles:
.hentry{
margin: 20px;
}
Increase or decrease the value for margin as you wish, depending on how much/little spacing you want. ??
Let me know if there’s anything I’ve missed out or if there’s anything else you need help with.