Removing Curse header?

Discussion in 'Bukkit Discussion' started by Kainzo, Jul 23, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    Kainzo

    Is there anyway to remove this new, unannounced header from bukkit.org ?

    I think it clashes really hard with the theme and does nothing but take up visual space.
     
    Acrobot and ZNickq like this.
  2. Offline

    lol768

    You could use a userstyle to remove it. I'm working on possibly trying one now.

    Using this:
    PHP:
    #netbar
    {
    displaynone
    }
    html
    {
    margin-top0px !important;
    }
    hides it but unfortunately leaves a black bar at the top. Fixed
     
    ZNickq likes this.
  3. Offline

    Magi1053

    Someone should find a way to make the curse bar automatically merge with the xenforo options on the right
     
  4. Offline

    TnT

    Using Chrome stylish - I prefer this:
    Code:
        div#netbar {
            top:            3px !important;
            left:          750px !important;
            background:    none !important;
            width:          auto !important;
        }
       
        html {
            margin-top: 0px !important;
        }
    
    Result: http://i.imgur.com/5aeBj.png
     
    hawkfalcon likes this.
  5. Offline

    hawkfalcon

    That is how it should be default. :/
     
  6. JEEEEEZZZZ how many tabs do you want?
     
    hawkfalcon and BMX_ATVMAN14 like this.
  7. Offline

    TnT

    More? I've answered this question before actually :D. This is actually not as many as I often have.
     
  8. Offline

    Magi1053

    How about an updated code taking into consideration the new 'become a premium member' and the flag?
     
  9. Offline

    TnT

    Code:
        div#netbar {
            top:            3px !important;
            left:          525px !important;
            background:    none !important;
            width:          auto !important;
            box-shadow: none !important;
        }
     
        a.promotions {
            display:        none !important;
        }
     
        html {
            margin-top: 0px !important;
        }
    
    All credit goes to Jacek
     
    Magi1053 likes this.
  10. Offline

    sillyrosster

    Is this supposed to remove the extra black bar as well?
     
  11. Offline

    hawkfalcon

    In the html{, make
    margin-top: 0px !important;
    margin-top: -25px !important;
    Fixes that:)
     
  12. Offline

    sillyrosster

    Thanks!
     
  13. Offline

    np98765

    Thanks for posting your fixes, everyone. :D So glad to get rid of that curse bar.
     
    hawkfalcon likes this.
Thread Status:
Not open for further replies.

Share This Page