Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @id adbannerfix
- // @name AfterDawn Banner Fix
- // @description Fixes the misalignment of AfterDawn's banner when AdBlock is in use
- // @include http*://*.afterdawn.com/*
- // @include http*://*.puhelinvertailu.com/*
- // @include http*://*.download.fi/*
- // @include http*://*.edukas.fi/*
- // @run-at document-end
- // ==/UserScript==
- (function()
- {
- var logo, dummy, ad;
- if (logo = document.getElementById('logoHolder'))
- {
- dummy = document.createElement('div');
- dummy.setAttribute('style', 'float: right; margin: 35px 4px 0 0; min-height: 108px; min-width: 734px;');
- logo.parentNode.insertBefore(dummy, logo.nextSibling);
- if (ad = document.getElementById('ad-top-banner-placeholder'))
- ad.setAttribute('style', '');
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment