Quote:
Originally Posted by bananalive
It shouldn't. Can i see screenshot please?
|
I can confirm it does this as well... I've been mentioning it for a while now, but I guess you never got aroudn to fixing it, so I had to fix it myself (its one of the MANY template fixes I've made). It happens because you force 640px as the panel width, when it should be called by the stylevars...
The problem is right here (code is in ALL your admin pages)
Code:
<td class="panelsurround" align="center"><div class="panel">
<div style="width:640px" align="left">
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
It should read...
Code:
<td class="panelsurround" align="center"><div class="panel">
<div style="width:$stylevar[formwidth]" align="left">
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
Also, because of the way you setup the $messagearea stuff, to use standard
formwidth, instead of
formwidth_usercp, that means those with larger messagearea widths can NEVER use the sidepanel option without it messing up the page layouts. Message areas in admin pages should be the width of a private message box, not the width of a new thread box.