
Originally Posted by
Neutrons212
Oh yes! thanks!
But it works only if u login, but it's ok.
So, is there a method to solve this:
http://prntscr.com/67mjkg ?
If a news is too long, you need to scroll out, I wish it would go down automatically
add <br> code?
- - - Updated - - -
go to admin/news_create
go line 52
replace
PHP Code:
$longstory = $_POST['longstory'];
to
PHP Code:
$longstory = $_POST['longstory']; $longstory_split=str_split($longstory,76); for($xi=0;$xi<count($longstory_split);$xi++) { $longstory_split[$xi]=$longstory_split[$xi]."<br>"; } $longstory=implode("", $longstory_split);