Skip to content

Instantly share code, notes, and snippets.

@pmakholm
Created August 19, 2015 07:31
Show Gist options
  • Save pmakholm/19387e7de69f85fdce89 to your computer and use it in GitHub Desktop.
Save pmakholm/19387e7de69f85fdce89 to your computer and use it in GitHub Desktop.
// ==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