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.
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.
yeah. it's your adblock. go to adblock>preferences> look for a url(s) with the word "mamabar" in them and delete them.
GM script for it Spoiler // ==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); } } })();
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.
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 =.=