For Neopets ONLY discussion.
Topic locked

Uuugh, more ads

Fri Feb 03, 2006 8:48 pm

Has anyone else seen a "900 NP Offer!" button under the yellow sidebar? It seems unobtrusive at first, but it's really distracting while I'm playing NQII.

It doesn't seem blockable by adblock, so if anyone wants, here's some userContent.css rules to hide it:
Code:
@-moz-document domain(neopets.com){
  #mb + form{display:none !important;}
}


(If you're still on Firefox 1.0, remove the first and third line. But you should upgrade anyway!)

Fri Feb 03, 2006 8:55 pm

Thank-you! I haven't had any problems with ads once I got Firefox up and running, there was one time that some weird sounds came through, but this has been annoying me for ages. It comes up when I restock and screws with the page layout, causing me to miss even trying to haggle on items.

Fri Feb 03, 2006 8:55 pm

Thanks Dolph! Makes refreshing at the money tree easier.

Mon Feb 06, 2006 5:08 am

hmmmmmmm I must not have put the code in correctly, I am still getting that stupid 900np button :x

I put it under the other stuff on that css file.

Mon Feb 06, 2006 5:16 am

Ta. Thanks for that :)

Browsing neo without the ads is a lot easier ^_^

Mon Feb 06, 2006 6:37 am

I updated an am still having a problem with the BOTTOM 300 np offer. How do I get rid of that one?

Mon Feb 06, 2006 7:08 am

stampsyne wrote:I updated an am still having a problem with the BOTTOM 300 np offer. How do I get rid of that one?


Hmm... what's that? I've never seen it before. I get the idea it's only certain people, 'cause I only got the 900 one recently and it seems some people have had it for a while.

Mon Feb 06, 2006 2:32 pm

I think it's a 300NP-3x-a-day link from Yahoo that appears at random in the ad at the foot of some pages. I found if you click on the thing, even if you take the 900NP from "Your Items", you can get additional NP. Maybe that's a bug, or maybe it's TNT's way of finding out whether people ever read the ads.

Yesterday there was another 900NP link on the front page, but it's gone today. Nice to get 1800NP, though as I said, I was a little suspicious. Day before, or maybe two days before, it was on the Courses page at the Swashbuckling Academy and it also doubled the bonus. It *never* appears on a U13 account, which makes a certain someone in our house very jealous, even 900NP a day seems like a lot to some of us.

Tue Feb 07, 2006 11:57 pm

background_noise wrote:It *never* appears on a U13 account, which makes a certain someone in our house very jealous, even 900NP a day seems like a lot to some of us.


What's a U13 account?

Wed Feb 08, 2006 12:01 am

theonlysaneone wrote:
background_noise wrote:It *never* appears on a U13 account, which makes a certain someone in our house very jealous, even 900NP a day seems like a lot to some of us.


What's a U13 account?


I'm pretty sure it's under 13. (as in user age)

Wed Feb 08, 2006 11:52 am

Yep that's correct. If you have an U13 account, there's certain places you can't go to.

Thu Feb 09, 2006 1:17 am

Maybe a screenie and code can help.

Image

<font class=sf color=#333333>THIS PAGE CONTAINS PAID ADVERTISEMENTS</font><p><div id="bottomban"> <!--footerinc yahoohotjobs_300x250-->
<!-- FASTCLICK.COM 300x250 Medium Rectangle CODE for neopets.com/18 -->
<script language="javascript" src="http://media.fastclick.net/w/get.media?sid=21648&m=6&tp=8&d=j&t=n"></script>
<noscript><a href="http://media.fastclick.net/w/click.here?sid=21648&m=6&c=1" target="_blank">
<img src="http://media.fastclick.net/w/get.media?sid=21648&m=6&tp=8&d=s&c=1"
width=300 height=250 border=1></a></noscript>
<!-- FASTCLICK.COM 300x250 Medium Rectangle CODE for neopets.com/18 -->
<table cellspacing="0" cellpadding="0" width="468" height="90"><TR><TD align="center" valign="middle">
<a href="http://www.neopets.com/process_click.phtml?item_id=7656&rnd=02ce0effcee1fe4d67df0f0769cdcc6a" target="_blank"><img src="http://cds.adecn.com/resource/ads/291_1771.gif" alt="CLICK HERE!" width="468" height="60" border="0"></a><BR>
<a href="http://www.neopets.com/process_click.phtml?item_id=7656&rnd=02ce0effcee1fe4d67df0f0769cdcc6a" target="_blank"><font size="3"><b>Click here for 300NP 3 Times a Day!!!</b></font></a></TD></TR></table>
</div>

Thu Feb 09, 2006 6:03 am

Oh, haha, that's why I never see it. It's in the bottomban section, which I already have blocked.


Here's the code I'm currently using:

Code:
@-moz-document domain(neopets.com){
  div#ban{display:none;}
  div#bottomban{display:none;}
  td.tl > object{display:none;}
  #mb + form{display:none !important;}
}


div#ban is the top banner
div#bottomban is the bottom ad, which can be either square or apparently what you just posted
td.tl > object is the small one in the sidebar. There are a few that are img instead of object, and those get through, but they're for gormball and neomail, not ads
#mb + form is the button that was the point of this thread in the first place :)

The @-moz-document domain(neopets.com){ restricts it to neopets so it doesn't mess up other pages. As I said before, this won't work in Firefox 1.0, but if you're still using that you should upgrade to 1.5 anyway!

And that's my adblocking :)
Topic locked