Hi, how i can hide box on top of the deviantart.com? Link
If i block this box with Element Hiding Helper stay empty place...
Screen1 || Screen2
Thanks for help.
Deviantart.com
- Adblock Plus Fan
- Posts: 1255
- Joined: Sat Feb 24, 2007 11:08 am
Re: Deviantart.com
Link isn't working.fudo wrote:Link
ABP video download trick / Want to help? Test new builds/report bugs you find.
http://alexds1.deviantart.com/
deviantART has recently rolled out version 6 of it's website. And they've rolled out devious tricks to fight adblocking (sorry for the lame pun).
There is no filter or element to remove the empty space left behind from the blocking of the top ad.
If you have Stylish or userChrome.css handy, add this to it:
After you add this, you'll need to reboot Firefox to see the changes. When you come back, the ad the space will all be gone.
deviantART has recently rolled out version 6 of it's website. And they've rolled out devious tricks to fight adblocking (sorry for the lame pun).
There is no filter or element to remove the empty space left behind from the blocking of the top ad.
If you have Stylish or userChrome.css handy, add this to it:
Code: Select all
/*
* dA6 Adbar Remover
*
* Author : lbreda
* Credits : eaglevis (thanks!)
* Created : June 11th, 2008
* Updated : June 11th, 2008
* Version : 1.10
* Website : http://lbreda.deviantart.com
* Description : Removes the main adbar in dA version 6
* Usage : Use with Stylish Firefox extension (http://userstyles.org/) or copy to your Firefox userContent.css file
*/
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain(deviantart.com) {
/*Removes adbar*/
#ad-blocking-makes-fella-sad, #adso-magnifico{
visibility: collapse !important;
}
body.withad {
background-image: url(http://st.deviantart.com/minish/main/gradient.gif) !important;
}
/* Moves headers on top */
#midSection{
top: 27px !important;
}
#headerTop{
height: 100px !important;
}
/* Resets edges */
#headerTop i.tr, #headerTop i.tl {
top: 101px !important;
}
#noTouch #searchDropdownOverlay {
top: 71px !important;
}
#noTouch #searchDropdownMenu {
top: 92px !important;
}
/* Menu editor popup position fix */
#appFolderShadow {
top: 65px !important;
}
#appFolder {
top: 65px !important;
}
}