MyBB Community Forums

Full Version: Remove Code Scrollbar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, how can I remove the scrollbar on the code format when making a post so the the text that you can see expands all the way down so you don't need a scrollbar.
Like, I want to be able to see all the text without having to scroll down.
[Image: kfuhvH3.gif]
In global.css find:

.codeblock code {
    overflow: auto;
    height: auto;
    max-height: 200px;
    display: block;
    font-family: Monaco,Consolas,Courier,monospace;
    font-size: 13px;
}

remove:

max-height: 200px;
Thank you so much, Big Grin
thank you so much