Current Events
Come up with a CSS for GameFAQs that deletes the ads and get Rupees...
miikrr x (6)Board List | Topic List | Post New Message | FAQ | TOS | Log Out | Online: 3
From: Numenor Posted: 4/28/2004 2:16:49 PM | Options | #001
29: Elite Moderator
Online
Seriously... who wants to keep the damn things. I can't code worth shit otherwise I'd do it. Anyone up to the challenge?

---
Mac OSX is like Windows XP... only good.
Mozilla... Get it.
From: Onion Posted: 4/28/2004 2:59:22 PM | Options | #002
30: Administrator
Offline
New GF:

.footer, .footer *, .adbox { display: none }

Old GF:

iframe[src*='mac-ad'],
img[src*='com.com'],
iframe[width='160'][height='610'],
iframe[src*='ads'],
iframe[src*='gamespot'],
iframe[src*='.search.com'],
a[href*='adclick'],
a img[width='468'][height='60'],
#networkfooter,
#networkfooter * { display:none !important; }
From: Ant P Posted: 4/28/2004 3:03:01 PM | Options | #003
28: Moderator
Online
the one I'm using seems to work for the new one as well.
---
specialops.aquatakat.net
Engrish Plz.
From: miikrr x Posted: 4/28/2004 3:03:16 PM | Options | #004
6: New User
Online
Yeah, but any CSS you submit or else either they wont use it or will add it in themselves, thus it wont look like you'd want it to.
From: Onion Posted: 4/28/2004 3:05:39 PM | Options | #005
30: Administrator
Offline
You can still use userContent.css. That might just be the only benefit of having 1,000,000 ids and classes on the new design.
From: Numenor Posted: 4/28/2004 3:36:21 PM | Options | #006
29: Elite Moderator
Online
Using your own CSS is the only way to go these days with all the fucking ads all over the place. The CSS I use is the following and it does a great job of getting rid of ads everywhere, not just at GF (note, I've added the sections Onion gave already):

A:link[HREF*="ad."] IMG,
A:link[HREF*="ads."] IMG,
A:link[HREF*="/ad"] IMG,
A:link[HREF*="/A="] IMG,
A:link[HREF*="/click"] IMG,
A:link[HREF*="?click"] IMG,
A:link[HREF*="?banner"] IMG,
A:link[HREF*="=click"] IMG,
A:link[HREF*="clickurl="] IMG,
A:link[HREF*=".atwola."] IMG,
A:link[HREF*="spinbox."] IMG,
A:link[HREF*="transfer.go"] IMG,
A:link[HREF*="/promos"] IMG,
A:link[HREF*="adfarm"] IMG,
A:link[HREF*="bluestreak"] IMG,
A:link[HREF*="chkpt.zdnet.com/"] IMG,
A:link[HREF*="doubleclick"] IMG,
A:link[HREF*="/rd."] IMG,
A:link[HREF*="/0AD"] IMG,
A:link[HREF*="trackoffer."] IMG,
A:link[HREF*="i.i.com.com"] IMG,
A:link[HREF*="tracksponsor."] IMG { display: none ! important }

/* disable ad iframes */
IFRAME[SRC*="ad."],
IFRAME[SRC*="ads."],
IFRAME[SRC*="/ad"],
IFRAME[SRC*="/A="],
IFRAME[SRC*="/click"],
IFRAME[SRC*="?click"],
IFRAME[SRC*="?banner"],
IFRAME[SRC*="=click"],
IFRAME[SRC*="clickurl="],
IFRAME[SRC*=".atwola."],
IFRAME[SRC*="spinbox."],
IFRAME[SRC*="transfer.go"],
IFRAME[SRC*="/promos"],
IFRAME[SRC*="adfarm"],
IFRAME[SRC*="bluestreak"],
IFRAME[SRC*="doubleclick"],
IFRAME[SRC*="/rd."],
IFRAME[SRC*="/0AD"],
IFRAME[SRC*="trackoffer."],
IFRAME[SRC*="tracksponsor."] { display: none ! important }

/* turning some false positives back off */

A:link[HREF*="download."] IMG,
A:link[HREF*="netflix.com/AddToQueue"] IMG,
A:link[HREF*="invisionfree.com/forums/The_Isle_of_Numenor/admin.php"] IMG,
A:link[HREF*="mail.yahoo.com"] IMG,
A:link[HREF*="forums.macnn.com/index.php"] IMG,
A:link[HREF*="click.mp3"] IMG { display: inline ! important }

/* removes the footer from GameFAQs */
#networkfooter { display: none }
.footer, .footer *, .adbox { display: none }

Instructions for Mozilla, Netscape and other related browsers:
1) Take the file you made and save a copy of it inside the "chrome" folder that can be located here: {location of your browser profile}/default/random stuff.slt/chrome/
2) Note:"random stuff" is usually just gibberish letters...NOT "random stuff"
3) Launch Mozilla/Netscape, etc...



---
Mac OSX is like Windows XP... only good.
Mozilla... Get it.