• I had previously asked about a way to contain long reviews so they can be scrollable. I was given this code:

    .comment-text .description p  {
        max-height: 300px;
        overflow: scroll;
    }

    And it has served me well, but it has become such a bother to see that it makes the whole review content scroll, including the title. Is there a code to just make the review body scrollable and keep the review title static?

Viewing 1 replies (of 1 total)
  • Plugin Support Fran Mendoza

    (@franmglez92)

    Hello there,
    hope you are doing well! ??

    Could you replace the previous CSS with this new one and check if the problem is solved, please?

    .comment-text .description .review_content  {
        max-height: 300px;
        overflow: scroll;
        display: block;
    }

    Let us know any news, please.

    Have a nice day!

Viewing 1 replies (of 1 total)
  • The topic ‘Updated method to long reviews?’ is closed to new replies.