[ad_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; }
