PDA

View Full Version : Portal beeing streched


MindTrix
04-25-2004, 12:17 PM
Looks like part of the portal is beeing streched and making the images out of line due to long hack names. Screenie :)

Xenon
04-25-2004, 04:16 PM
yeah, but that's by design.

i suggest not to use such big hack names ^^

at least the streching is working correctly, as it didn't in the past ;)

Logician
04-25-2004, 07:09 PM
I guess my hack is the culprit ^^

assassingod
04-25-2004, 07:18 PM
I think fetch_trimmed_title() could be of some use here?:D

Xenon
04-26-2004, 03:27 PM
nope, just short enough titles :p

TECK
05-04-2004, 05:46 PM
I think fetch_trimmed_title() could be of some use here?:D
Or even easier:
if (strlen($hack['title']) > 30)
{
$hack['title'] = substr($hack['title'], 0, 28) . '...';
}
;)

assassingod
05-04-2004, 05:56 PM
Nah, I prefer

$hack['title'] = fetch_trimmed_title($hack['title'], 28);

:)