Anyone know how to get rid of the links at the top?

Discussion in 'Neopets Chit-Chat' started by lanabubalo13, Nov 21, 2009.

  1. lanabubalo13

    lanabubalo13 Level II

    Joined:
    Mar 17, 2009
    Messages:
    158
    Likes Received:
    6
    Refer to picture. They stretch out the shop pages, and it is annoying.








    Edit: Oooooooooooookay nevermind; I just figured out how to do it. Geez I feel like an idiot for figuring out 2 minutes after posting this.
     

    Attached Files:

  2. Anfan

    Anfan Level IV

    Joined:
    Feb 12, 2009
    Messages:
    1,327
    Likes Received:
    105
    Location:
    USA
    I've never seen a display like that before. Are you adblocking all images?

    The links at the top seem to be part of the Nick bar, though, and if you want to get rid of that, that's pretty straightforward. AdBlock => Preferences => Add filter..., then paste "#div(brand-mamabar)", without the quotes.
     
  3. Phee

    Phee Moderator
    Staff Member

    Joined:
    Aug 18, 2007
    Messages:
    6,206
    Likes Received:
    101
    yeah. it's your adblock. go to adblock>preferences> look for a url(s) with the word "mamabar" in them and delete them.
     
  4. Dark

    Dark Level IV

    Joined:
    May 29, 2008
    Messages:
    1,042
    Likes Received:
    123
    Location:
    Canada
    GM script for it :)


    // ==UserScript==
    // @name Neopets/Petpet Park - Remove Nickeldeon Bar
    // @namespace http://userstyles.org
    // @description Removes the annyoing Nickelodeon bar at the top of Neopets.com and Petpetpark.com
    // @author Matoro
    // @homepage http://userstyles.org/styles/21530
    // ==/UserScript==
    (function() {
    var css = ".brand-mamabar{display:none;}";
    if (typeof GM_addStyle != "undefined") {
    GM_addStyle(css);
    } else if (typeof PRO_addStyle != "undefined") {
    PRO_addStyle(css);
    } else if (typeof addStyle != "undefined") {
    addStyle(css);
    } else {
    var heads = document.getElementsByTagName("head");
    if (heads.length > 0) {
    var node = document.createElement("style");
    node.type = "text/css";
    node.appendChild(document.createTextNode(css));
    heads[0].appendChild(node);
    }
    }
    })();
     
    lanabubalo13 likes this.
  5. lanabubalo13

    lanabubalo13 Level II

    Joined:
    Mar 17, 2009
    Messages:
    158
    Likes Received:
    6
    Thanks Dark!

    I ended up just un-adblocking them (which was a pain to do to scroll through my adblock list lol), but I love the GM script more haha.
     
  6. lanabubalo13

    lanabubalo13 Level II

    Joined:
    Mar 17, 2009
    Messages:
    158
    Likes Received:
    6
    Thanks Dark!

    I ended up just un-adblocking them (which was a pain to do to scroll through my adblock list lol), but I love the GM script more haha.



    edit: stupid lag =.=