• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Gesior AAC - forum help.

Krzkru

New Member
Joined
Jan 10, 2013
Messages
89
Reaction score
1
Location
Poland
clipboard02eu.jpg

Anyone knows how to make "quote" smaller? When there's no quote forum looks normal.

link to forum.php

Thanks
 
Last edited:
Here is line about design of quote
Code:
$text = str_ireplace('[ quote]'.$quote.'[ /quote]', '<table cellpadding="0" style="background-color: #'.$bgcolor.'; width: 4800px; border-style: dotted; border-color: #007900; border-width: 2px"><tr><td>'.$quote.'</td></tr></table>', $text);
If you want to less widther quote change
Code:
width: 4800px;
to
Code:
width: 1000px;
1000px is for example, you can set value how you want.
 
Back
Top