MyBB Community Forums

Full Version: Editor not matching textarea, getting frustrated!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Seriously, WT* is going on with my textbox?
[Image: jdfyze.png]

I've searched everywhere, edited the editor.js, changed rows and cols and nothing helps. How can I minimize the area where all the code buttons and that kind of stuff is, and how can I make it match?
Just tried it, doesn't work for me Sad
Try reverting the template or <texarea /> you edited at original, sometimes that may be the problem.
I've reverted it too :/
May you provide your forum url and a test account please?
http://xenano.net/forum

Username : test
password : test123
Please activate Office 2007 editor to see if the problem persist...
Yup, still there.
ACP > Themes > Your theme > Edit > global.css > and Search;
textarea {
	background: #181818;
	color: #808080;
	border: 1px solid #121212;
	padding: 2px;
	font-family: Verdana, Arial, Sans-Serif;
	line-height: 1.4;
	font-size: 13px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
        -moz-box-shadow: 0px 0px 1px #404040;
        -webkit-box-shadow: 0px 0px 1px #404040;
        box-shadow: 0px 0px 1px #404040;
        -khtml-box-shadow: 0px 0px 1px #404040;
}

and Replace it with;
textarea {
	background: #181818;
	color: #808080;
	border: 1px solid #a5cae4;
	padding: 2px;
	font-family: Verdana, Arial, Sans-Serif;
	line-height: 1.4;
	font-size: 13px;
        moz-border-radius: 6px;
	-webkit-border-radius:6px;
	border--radius:6px;
}
Pages: 1 2