MyBB Community Forums

Full Version: Signature in Private Message in User CP is too big.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello.

It's me again.I have Fit on Page but it's doesn't work in this section which i described it thread topic.What i have to do?Thanks.
You can do the following:
1. Add this to global.css
.maxsize img {
   max-width: 99%;
   width: auto;
   height: auto;
}
2. Template edits:
a) postbit
<td class="trow2 post_content {$unapproved_shade}">
Change to:
<td class="trow2 post_content {$unapproved_shade} maxsize">
b) postbit_classic
	<td class="{$altbg}" valign="top">
		<table width="100%">
Change to:
        <td class="{$altbg} maxsize" valign="top">
		<table width="100%">

Might cause conflict with that plugin (but I don't think it will). You could uninstall it and put the maxsize class to every template which may get bigger by users images but that needs MyBB template knowledge. I might make a tutorial soon.