// ==UserScript== // @name KissAnime Slimmer Header // @description Removes the cruft from this site's navigation bar. // @namespace userscripts.org/user/swyter // @match http://kissanime.com/* // @version 1 // @grant GM_addStyle // @run-at document-start // @contributionURL https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=swyterzone%40gmail%2ecom&item_number=swydonations¤cy_code=EUR // @downloadURL none // ==/UserScript== /* rules for a slimmer header */ GM_addStyle("#head + .clear \ { \ clear: unset; \ height: 76px; \ } \ \ #head h1 a.logo \ { \ width: 243px !important; \ height: 46px !important; \ } \ \ #search \ { \ z-index: 2; \ } \ \ #search::after \ { \ content: ''; \ position: absolute; \ display: inline-block; \ \ z-index: -1; \ \ width: 100%; \ height: 30px; \ \ background: #2C2C2C; \ border-radius: 7px 7px 0 0; \ \ top: -10px; \ left: 0; \ } \ \ #navcontainer ul \ { \ position: absolute; \ } \ \ #navcontainer #liRequest \ { \ display: none !important; \ } \ \ form#formSearch > div:last-child \ { \ margin-top: 0 !important; \ float: right; \ }");