Old-Style left of post.
// ==UserScript==
// @name GameFAQs Old-Style left of post.
// @Author Judgmenl
// @namespace Kraust
// @version 1.2.0
// @description Old-Style left of post.
// @author Kraust
// @match http://*.gamefaqs.com/*
// @grant none
// ==/UserScript==
$(".msg_below").css("position", "relative");
$(".msg_below").each(function(index){
$(this).parent().prev().append($(this).detach());
});
$(".message_num").each(function(index){
$(this).parent().append($(this).detach());
});
$(".edited").css("display", "block");
$(".action_after").hide();
$(".options").css("float", "none");