KissAnime Slimmer Header

Removes the cruft from this site's navigation bar.

As of 2015-07-21. See the latest version.

// ==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     2.1.1.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&currency_code=EUR

// ==/UserScript==

/* rules for a slimmer header */
GM_addStyle("#head + .clear                     \
             {                                  \
               clear: none;                     \
               height: 76px;                    \
             }                                  \
                                                \
             #head h1 a.logo                    \
             {                                  \
               width: 243px !important;         \
               height: 65px !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, #li1,    \
             #result_box + div iframe           \
             {                                  \
               display: none !important;        \
             }                                  \
                                                \
             form#formSearch > div:last-child   \
             {                                  \
               margin-top: 0 !important;        \
               float: right;                    \
             }");