• Resolved anti89

    (@anti89)


    Hello,

    1. How can i manage the block space between the revieuws?

    See screenshot:

    https://ibb.co/yXDLzGR

    2. And how can i manage the text length of the reviews so the width is overall the same from the blocks?

    Thanks!

    • This topic was modified 1 year, 2 months ago by anti89.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author jgwhite33

    (@jgwhite33)

    1. You can add this CSS to the custom CSS section for the review template to control the space.

    .wprevpro_t1_DIV_1 { padding-left: 15px !important; padding-right: 15px !important; }

    2. You have two options to control the text length. One, you can turn on the Read More option for the review template. Two, you could turn off the read more and use a vertical scrollbar on the text. To do that you would add this CSS…

    .wprevpro_t1_DIV_1 { padding-left: 15px !important; padding-right: 15px !important; }
    p.wprevpro_t1_P_3 { height: 200px; overflow: auto; padding-right: 2px;}
    p.wprevpro_t1_P_3::-webkit-scrollbar { width: 3px; }
    p.wprevpro_t1_P_3::-webkit-scrollbar-track { box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); } p.wprevpro_t1_P_3::-webkit-scrollbar-thumb { background-color: darkgrey; outline: 1px solid slategrey; }

    Thread Starter anti89

    (@anti89)

    1. Great. This works!
    2. Where can i find the readmore button? The code for the scrollbar don’t work. Can you make this a separate code from the blocks revieuw spacing code above?

      Thanks!
    Plugin Author jgwhite33

    (@jgwhite33)

    2. The read more setting is a setting when you create the review template. It is one of the options.

    To use just he scroll bar css…

    p.wprevpro_t1_P_3 { height: 200px; overflow: auto; padding-right: 2px;}
    p.wprevpro_t1_P_3::-webkit-scrollbar { width: 3px; }
    p.wprevpro_t1_P_3::-webkit-scrollbar-track { box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); } p.wprevpro_t1_P_3::-webkit-scrollbar-thumb { background-color: darkgrey; outline: 1px solid slategrey; }

    Please share a link to the page with the review slider so I can take a look why the css isn’t working.

    thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Block space between the reviews’ is closed to new replies.