Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Geenstijl Fix
  3. // @match https://www.geenstijl.nl/*
  4. // ==/UserScript==
  5.  
  6. $(document).ready(function() {
  7. $('article img').css('padding-right', '20px');
  8. $('.aside_sticky_elem').css('position', 'static');
  9. $('.contain_aside').children().eq(1).nextAll().remove();
  10. $('.aside-gs').children().eq(2).nextAll().remove();
  11. $('.art-footer > .pull-right.txt-center').remove();
  12. $('.art-footer').css('font-size', '12px');
  13. $('header').css('top', '0px');
  14. $('.not-a-pixel').remove();
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement