• Resolved atehortua

    (@atehortua)


    Hello. I would like to be able to include a gray horizontal line in the review summary between each of them. It’s possible? Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    1. If you want to separate the reviews with a horizontal line, you could use some custom CSS like this:

    .glsr .glsr-review + .glsr-review {
      border-top: 1px solid currentColor;
      padding-top: 2em;
    }

    And this is what it looks like: https://demo.site-reviews.com/

    2. If you were talking about the rating summary bars (not the reviews), you could do it like this:

    .glsr .glsr-bar + .glsr-bar > * {
        border-top: 1px solid currentColor;
    }

    Which looks like this:

    • This reply was modified 2 years, 1 month ago by Gemini Labs.
    • This reply was modified 2 years, 1 month ago by Gemini Labs.
    Thread Starter atehortua

    (@atehortua)

    Perfect, thank you very much

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Horizontal line’ is closed to new replies.