MyBB Community Forums

Full Version: Php and Code Tag Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well im using the php][/php and code][/code for some text.If the text is big it makes scrolling.How i can make the text area bigger so the other no need to scroll to see the rest text?

Thanks.
Goto AdminCP > Templates & Themes > (click on your theme) > global.css > Advanced edit.
Search for
.codeblock code {
	overflow: auto;
	height: auto;
	max-height: 200px;
	display: block;
	font-family: Monaco, Consolas, Courier, monospace;
	font-size: 13px;
}
and replace with
.codeblock code {
	height: auto;
	display: block;
	font-family: Monaco, Consolas, Courier, monospace;
	font-size: 13px;
}
Thanks mate.
+rep