Skip to content

Instantly share code, notes, and snippets.

@LeonBlade
Last active December 3, 2015 21:19
Show Gist options
  • Save LeonBlade/4428ece319e4b86f8e92 to your computer and use it in GitHub Desktop.
Save LeonBlade/4428ece319e4b86f8e92 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name FFXIV Subreddit Theme Fix
// @namespace http://github.com/LeonBlade
// @version 0.2
// @description Fix the FFXIV subreddit theme with annoying overflow elements
// @author James Stine (LeonBlade)
// @grant none
// @match /^https?://www\.reddit\.com\/r\/ffxiv$/
// @run-at document-end
// @include /^https?://www\.reddit\.com\/r\/ffxiv$/
// @include /^https?://www\.reddit\.com\/r\/ffxiv\/.*$/
// ==/UserScript==
$(function () {
$('#header').css("overflow", "hidden");
$('.titlebox blockquote').attr("style", "width: auto !important")
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment