NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // // @author Zeue // @name FA ZeStyling Script // @description To be used with the "Beta" template from FA. // @website https://www.furaffinity.net/user/zeue/ // // @match http://www.furaffinity.net/* // @match https://www.furaffinity.net/* // @grant GM_addStyle // // ==/UserScript== (function() { var styleString = '.iconusername > img {height:25px;width:25px;padding-bottom:7px;}' + '.table-row > a {padding-left: 4px;}'; GM_addStyle(styleString); })();