Fix the display of long words in the profile

Now the long words in the player's description are not hidden but are transferred to a new line
This commit is contained in:
Vladyslav
2018-06-17 14:01:53 +03:00
parent 8861a578e4
commit 7fde3e5ec2
2 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ if($displayarray['vac_mode'] == 1) echo "<tr><th colspan='2'><font color='Maroon
</td>
<td class="desc1" >
<div><?php echo nl2br($profiel[1]); ?>
<div class="desc1div"><?php echo nl2br($profiel[1]); ?>
</div>
</td>
+7 -1
View File
@@ -3203,9 +3203,15 @@ td.cbg2 {
.ddb {
float: left;
}
.desc1div {
width: 236px;
word-wrap: break-word;
overflow-wrap: break-word;
}
.desc2div {
overflow: hidden;
width: 235px;
word-wrap: break-word;
overflow-wrap: break-word;
}
div.activation_time {
padding-left: 5px;