I am not sure if I am the only one having this problem, but I think I am not. So basically after the update, the current theme is not very compatible now and the only bug that can be seen is the quick-reply box, which is out of the screen. This has been annoying me for long enough, so I made a Greasemonkey script to fix this.
This script will set the text box as it was before. To run it, install Greasemonkey to FireFox and add this script.
Follow
this link to see how to run them in Opera.
Code mirror:
http://newage.ql.lt/projects/other/EZquickfix.user.js// ==UserScript==
// @name Evilzone quick-reply field fix
// @namespace Kulverstukas
// @description Fixes little bug in a theme which makes quick-reply field very large
// @include http://evilzone.org/*
// @include http://www.evilzone.org/*
// ==/UserScript==
var alltags = document.evaluate("//textarea[@name='message']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
alltags.snapshotItem(0).setAttribute('cols','100')