• Resolved john4614

    (@john4614)


    Hi, I was wondering if it is possible to add a border around a submitted review. If so how could I do this?

    The page I need help with: [log in to see the link]

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

    (@geminilabs)

    You can add a border with some CSS like this:

    .glsr .glsr-review {
        border: 1px solid #000;
        padding: 20px;
    }

    Or, you can display them in a grid like this:

    .glsr .glsr-reviews {
        display: grid;
        gap: 20px;
        grid-gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    .glsr .glsr-review {
        background: rgba(0,0,0,.05);
        padding: 20px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to add a border around a review’ is closed to new replies.