Sorry, forgive me for causing a expect.
Ok, if your like limit to 10 characters alone you have to continue my instructions ...
in the pluggin manager serach the pluggin
"Arcade - Show 5 Random Games on the Forum Home" and edit...
Serach the following code:
PHP Code:
$randomhighs0 = round($randomhighs0,0);
Just
Above add:
PHP Code:
$xx = 10;
$x = ($xx - 2);
if ((strlen($randomname0)) > $xx)
{
$randomname0 = substr($randomname0, 0, $x)."...";
}
if ((strlen($randomname1)) > $xx)
{
$randomname1 = substr($randomname1, 0, $x)."...";
}
if ((strlen($randomname2)) > $xx)
{
$randomname2 = substr($randomname2, 0, $x)."...";
}
if ((strlen($randomname3)) > $xx)
{
$randomname3 = substr($randomname3, 0, $x)."...";
}
if ((strlen($randomname4)) > $xx)
{
$randomname4 = substr($randomname4, 0, $x)."...";
}
Note: the variable
$xx, change the limit of characters (
$xx = 10) you can change the value for adapting the aspect in your template.
Sorry again, and test it....
as already I said before... my english is very bad... I expect that be understood.
bye....