MyBB Community Forums

Full Version: Edit signature block width problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
When I go to the change signature page, the text area in the signature block goes behind the side bars of my theme. I uninstalled and reinstalled the theme and it still does it. The edit signature block is the only place this problem occurs. I have no clue what can be causing it. I have went as far as disabling all my plugins but that didn't help. I am thinking maybe there is some code I can add to the edit signature template to stop it.

Any ideas?

Thanks
may i have the url of your forum and a test account
(2012-10-14, 08:43 AM)mmadhankumar Wrote: [ -> ]may i have the url of your forum and a test account

Sure its www.gamerfaction.com

user name: detest
password: password

thanks
Mybe try adding this to the top of your member profile template:

<title>{$mybb->settings['bbname']} - {$lang->profile}</title>
<style type="text/css">
div.messageEditor {width:650px!important;height:350px!important;}
div.messageEditor div textarea {width:99%!important;height:100%!important;}
</style>
(2012-10-14, 12:26 PM)Leefish Wrote: [ -> ]Mybe try adding this to the top of your member profile template:

<title>{$mybb->settings['bbname']} - {$lang->profile}</title>
<style type="text/css">
div.messageEditor {width:650px!important;height:350px!important;}
div.messageEditor div textarea {width:99%!important;height:100%!important;}
</style>

I tried adding this to the member profile template and then a couple of the UCP templates but everything stayed the same.
ok, I was looking at the board - sorry, try that code I posted in the top of usercp_editsig.

I see that is ONLY does the overlap when you have the theme narrow, otherwise it fits fine, so you could also try forcing the width of the container on that page instead.
ok i just checked it now....

in global.css find this
global.css
.messageEditor {
width: 500px !important;
}

and replace this
.messageEditor {
width: 395px !important;
height: 350px!important;
}


then you need to change the width of the textarea too from the templates to 395px
(2012-10-15, 09:40 AM)mmadhankumar Wrote: [ -> ]ok i just checked it now....

in global.css find this
global.css
.messageEditor {
width: 500px !important;
}

and replace this
.messageEditor {
width: 395px !important;
height: 350px!important;
}


then you need to change the width of the textarea too from the templates to 395px

No no.

He should not do that in Global css - it will affect the entire board, and the issue is in ONE page.

That is why I suggested ONLY in the usercp_editsig
oops yeah i forgot the fact that this issue is on only one page Big Grin

ok then @glhowe1 add this to usercp_editsig

<style type="text/css">
div.messageEditor {width:395px!important;height:350px!important;}
div.messageEditor div textarea {width:99%!important;height:100%!important;}
</style>
Indeed. It is also worth pointing out that he can adjust the width to whatever he likes - probably best to keep it big enough so it does not wrap all the code buttons in an ugly way.
Pages: 1 2