Jesse Andrews
Admin
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)
|
|
|
Bryce Driesenga
User
|
The top ad bar now seems to show a deviantART logo. It is a grey square inside a rounded green ad area right below the top bar. Hopefully you can fix it!
Thanks!
|
|
|
AkaVeve
User
|
It works perfectly :). Very very good job.
It also removed the massive space filled with junk from the bottom of the page :D.
L.E.: You need to update the script... they've modified the page :| (11.11.2008)
|
|
|
kodayoda713
Script's Author
|
welcome =]
|
|
|
Baby_Yoda
User
|
Ok, now everything works perfectly :D
I'm so happy with my ad-less deviantArt now :D
And when I see another ad, I'll come on running here :P
Thanks a lot ^^
Greets
Love ya :D
|
|
|
kodayoda713
Script's Author
|
And yea I was wanting to do the same thing he did except for V6 but I dont really know how haha but I'll see if I can look into it =]. And I updated it once again so hopefully last messup for a while. Thanks you guys.
|
|
|
Lord Venom
User
|
Is there any chance you can add a feature to override the browse limit, like somebody posted at http://userscripts.org/scripts/show/23756 ?
Thanks for making this wonderful script! :D
|
|
|
Baby_Yoda
User
|
Ok, now the space problem is fixed ^^
Yet, the big ad at the main page is still there :S
Yet, now there is a very weird bug.
Here's a screen: http://cmdstud.khlim.be/~jbollansee/pablo/dA%20...
(this bug is the same in "Journal" but didn't occur in "Gallery" and neither in "Faves")
Yet in "Gallery" and "Faves" the ads are still there.
Greets
Edit1: and yes, I updated, I have like an autoupdater, I used that, AND I redownloaded it from this page so...
|
|
|
kodayoda713
Script's Author
|
Thanks so much Baby_Yoda once again. Your awesome =D. Ok I took a look at the screeenshots and I compared them to what they look like on my page and they look kinda different. Did you try to reinstalling the script because I updated it recently =D. But I'll take a look at it still. Thanks
|
|
|
Baby_Yoda
User
|
Hey
Here I am again, and I've made a lot more screenshots :P
Btw, first I want to thank you for making this script ^^
Now first the main page.
http://cmdstud.khlim.be/~jbollansee/pablo/dA%20...
There still is to much cut of at the top and the big ad is back :S
Then for the Gallery and Faves page:
http://cmdstud.khlim.be/~jbollansee/pablo/dA%20...
Also to much cut of at the top and the ad is still there :S
(And I've noticed that at all the pages there is to much cut of at the top... ALL pages, not just the ones i'm talking about here ;) )
Use page:
http://cmdstud.khlim.be/~jbollansee/pablo/dA%20...
Again, to much cut of.
(Above "Pablo" there should be my nickname, and it isn't there :S)
Journal:
http://cmdstud.khlim.be/~jbollansee/pablo/dA%20...
As I said, at all pages there is to much cut of at the top, so here that's the problem too.
And there still is the little ad
Greets
|
|
|
Baby_Yoda
User
|
Ok, this works but it now does something very weird :P
At the main page of DeviantART it also deleted the space (screen: http://cmdstud.khlim.be/~jbollansee/pablo/dA%20... )
And for the other ads, I already gave screens I think.
Greets
|
|
|
brightshade782
User
|
it works fine except for one thing: the channels section is removed as well.
If it helps:
i'm running mac osx 10.5.4 &
firefox 3.0.1
|
|
|
the13thzen
User
|
Thanks for working on this script. Really helpful!
The most noticeable areas of improvement:
- the removed banner ad at the top of pages leaves a big empty space
- the DeviantART Notice ads above the comments section remains
- Collection ads remain
|
|
|
Baby_Yoda
User
|
Hi
Still loving your script :P
And I have another ad that has to be removed :P
I HATE ADS ! xD
In the gallery :S Very similar to the square ad at the front page.
Here's a screen: http://cmdstud.khlim.be/~jbollansee/pablo/dA%20...
(btw, the same add is also in the Faves tab ^^)
and another one I just found :P in the journal tab
screen: http://cmdstud.khlim.be/~jbollansee/pablo/dA%20...
Thanks a lot :D
I hope I'm not giving you to much work :P
But all ads have to be gone ! xD :P
Thanks again btw ^^ I so hate ads :P
|
|
|
Baby_Yoda
User
|
Ok, thanks a lot :D
Finally those stupid ads are gone :D
I love you, and your script :D
Thanks :D
|
|
|
kodayoda713
Script's Author
|
Okay I updated it to hide the ad on your Deviant page so it should work although I couldn't get it to hide the space left behind and to only hide the square ad and not the footer go to the greasemonkey icon and then click manage scripts and then find that one and click edit and take out these things out:
div.base-pane, div.depths table, #depths div.footer_links,
and it should work so the final code should look sorta like this
// ==UserScript==
// @name DeviantART CSS
// @namespace Myspace
// @include http://www.deviantart.com/*
// @include http://*.deviantart.com/
// @include http://*.deviantart.com/*
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('body.sleek div.sleekadbubble, #ad-blocking-makes-fella-sad {display:none;visibility:hidden}');
have fun and enjoy!
|
|
|
Baby_Yoda
User
|
Really nice script :D
Very useful, I hate the ads :P
But there is one more ad you should remove. When you're in your own deviant page, at the top there's an ad similar to the square things, and I hate it :P
Screen: http://cmdstud.khlim.be/~jbollansee/pablo/dA%20...
And then I have one more thing to say.
Could you perhaps make another script that only deletes the ads, and not the footer thing ^^ I kinda liked the footer thing :P
Thanks for this great script :D
|
|
|
kodayoda713
Script's Author
|
This is my first script so yea. This just removes the footer from DA and also the new and very annoying, square ad. Please comment if you use. Constructive Criticism is good =].
|