If you don't want it centered, do this:
<script>
/* Made by SyntaxBlitz, please do NOT remove credit.
Used Agent Moose's Request Board code as a reference, do credit goes to him too.
Some of the tricky code snippets I used from that code =]
Also, thanks to Moosey for helping me out with the finding out of the username =] */
//The user's username? --- This code snippet is by Agent Moose, all credit goes to him.
var name = document.getElementsByTagName("span");
for(v=0;v<name.length;v++){
if(name[v].innerHTML.match(/Hello <b>(.*)<\/b>/i)){
var username = RegExp.$1;
}
}
//------------------------
if(location.href.match("action=pm") && location.href.match("other=requestFeature")) {
if(username) {
$("#bodyarea").after("<span class='smalltext'>Feature Request made by SyntaxBlitz of <a href='http://www.revolutionx.smfforfree3.com/'>Revolution X.</a></span>")
document.title = "Request a feature"
form = "<div id='requestForm'><br />This is the feature request form.<br /><br />Main idea:<input type='text' name='idea' /><br />Details:<br /><text" + "area name='details' cols='50' rows='20' /></text" + "area><br /><br /><input type='submit' value='Request Feature' onClick='isItGood();' /></div>";
$("#bodyarea").after(form);
$("input[name=subject]").val("A new feature has been requested by " + username);
$("#bodyarea").hide();
}
}
function isItGood() {
$("div#requestForm").after("<div id='isrite' style='overflow: auto; width: 500px; height: 500px;'>Is this right?<br />Main idea: " + $("input[name=idea]").val() + "<br /><br />Details: " + $("textarea[name=details]").val() + "<br /><br /><button onClick='request();'>Yes</button> <button onClick='undo();'>No</button></div>");
$("div#requestForm").hide();
}
function undo() {
$("div#isrite").hide();
$("div#requestForm").show();
}
function request() {
$("textarea[name=message]").val("Main idea: " + $("input[name=idea]").val() + "\nDetails: " + $("textarea[name=details]").val());
document.forms["postmodify"].submit();
}
</script>