Quote:
Originally Posted by zero477
Hello noypiscripter and thank you for your answer.
You are right, I am using vB 4 i posted in the wrong forum (Im sorry, hope that the moderators move this thread to the correct place).
Ill check if your solution works.
|
In that case, remove the h-inline-block and ellipsis css classes in the span tag and then replace this css in additional css:
Code:
.review-text .pagetext { width: 90%; }
with:
Code:
.review-text .pagetext {
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 90%;
}