Created
August 19, 2015 07:31
-
-
Save pmakholm/19387e7de69f85fdce89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Version2 fix-up | |
// @namespace http://peter.makholm.net/ | |
// @version 0.1 | |
// @description Invasive fix-up for the design on version2.dk | |
// @author Peter Makholm | |
// @match http://www.version2.dk/ | |
// @match http://www.version2.dk/* | |
// @grant none | |
// ==/UserScript== | |
jQuery('.latest-comments').css('position','fixed'); | |
jQuery('.latest-comments').css('top','100px'); | |
jQuery('.latest-comments').css('left','50px'); | |
jQuery('.latest-comments').css('width','300px'); | |
jQuery('.top-three').after( jQuery('.blogs-list') ); | |
jQuery('.top-three').css('display', 'none'); | |
jQuery('.wrap-top').css('display', 'none'); | |
jQuery('html').css('font-family', 'Arial, Helvetica, sans-serif'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment