Any custom layout will require you to add your own custom CSS.
For example:
.glsr-review {
border: 1px solid rgba(0,0,0,0.1);
box-shadow: 0 0 1rem rgba(0,0,0,0.1);
margin-bottom: 1.5rem !important;
padding: 1.5rem;
}
This is perfect! Just what I needed 🙂
Thank you!
I take this opportunity to comment on two points:
– Need: How can I make comments show on pages instead of all at once? That is, if I have 10 comments, 5 are displayed and another 5 on another page.
– Development suggestion: It would be ideal for those of us who use the plugin to add different ways of displaying these comments in future updates, especially being able to present three comments per row in small carousel-like rectangles with shortcodes.
Thank you so much for everything!
1. Please use the pagination option (see the Help > Shortcodes page).
[site_reviews display=5 pagination=ajax]
2. See: https://ww.wp.xz.cn/support/topic/can-i-display-reviews-in-a-carousel/#post-11664306
Note: the count option has been changed to display. So it would look like this:
[site_reviews display=1]
[site_reviews display=1 offset=1]
etc.
You can also use the helper functions to roll your own carousel implementation. See the Help > Functions page for more info.
Thank you so much for responding so quickly!