Site in read-only mode

This site is now read-only following the release of MyBB 1.8 and the new mods site.

If you are looking for MyBB 1.8 mods please click here to visit the new mods site.

You can continue to download submissions for MyBB 1.6 and earlier here, however new submissions will only be accepted via the new mods site.

Prevent Code Overflow

Get rid of the scroll bar on the code box.


Go to Admin CP > Templates & Styles > Your theme > global.css > Edit Stylesheet: Advanced Mode

Find this:

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


Replace with this:

Code:
.codeblock code {
    display: block;
    font-family: Monaco, Consolas, Courier, monospace;
    font-size: 13px;
}