Login     Sign up
Deporteando (@albertof)
114 months ago
587 Views

1.- the text goes off the screen In the description and comments photos and blogs

how to fix

2.- When you publish a blog stays sending

1 people followed this question
0

file: includes/libs/ss.inc.php function stream_display
old
[code]
$row['message'] .= '<div>'.nl2br(h($story['content'])).'</div>';
[/code]
new
[code]
$row['message'] .= '<div style="word-wrap: break-word;">'.nl2br(h($story['content'])).'</div>';
[/code]

function stream_display
old
[code]
<td class="user_post_right" valign="top">
[/code]
new
[code]
<td class="user_post_right" valign="top" style="word-break: break-all;">
[/code]

Jcow Master @falcone
114 months ago
@albertof ok forget the first part, file: files/common_css/style.css [code].user_post_content {[/code]
114 months ago
ok posting codes in comments is not working good
114 months ago
add word-wrap: break-word; in .user_post_content
114 months ago
@falcone uff where I have to make changes , I can not find it
114 months ago