Ubuntu-it Forum Fixed Header

Script per rendere sempre visibile il menu superiore del forum

  1. // ==UserScript==
  2. // @name Ubuntu-it Forum Fixed Header
  3. // @description Script per rendere sempre visibile il menu superiore del forum
  4. // @namespace forum.ubuntu-it.org/*
  5. // @include http://forum.ubuntu-it.org/*
  6. // @version 20140513
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. jQuery(document).ready(function(){
  11. jQuery('#fixed-header').css({
  12. position:'fixed',
  13. top: '0px',
  14. width: '100%',
  15. backgroundColor: 'white',
  16. boxShadow: '2px 2px 5px #CCC',
  17. height: '110px',
  18. zIndex: 9e9
  19. });
  20. jQuery('#wrap').css({ marginTop: '120px' });
  21. });