Ist das der Defaultwert bei Facebook4 Personen gefällt das.
whiterabbit schrieb:Mit Adblock Plus ist dieses "tolle" Plugin mir nichts dir nichts herausgefiltert. Und das war auch meine erste Maßnahme nach dem Aufruf der neuen Seite.
Phelice schrieb:Danke, Groundspeak. Ganz toll. Langsam vergeht mir echt die Lust. Was soll denn der Mist jetzt.
Bin mal gespannt, wie Zynga dieses Geocaching-Spiel kopieren wird.
Ich auch nicht, aber ich hab' gerade mal angefangen:jennergruhle schrieb:Leider kann man mit AdBlock nicht so einfach dieses bekloppte "Lost & Found"-Bild samt zugehörigem div ausblenden (das Bild ja, aber das schwarze div bleibt). Kann man das Div anhand der ID einfach mit Greasemonkey ausblenden? Ich habe bisher noch keine Greasemonkey-Skripte geschrieben...
// ==UserScript==
// @name GC Hide Lost&Found
// @namespace http://www.hz6.de
// @description Versteckt das neue Lost & Found Banner
// @include http://www.geocaching.com/seek/cache_details.aspx*
// ==/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("div.LFNominateBanner { display: none; }");
n0x0n schrieb:Ich auch nicht, aber ich hab' gerade mal angefangen:jennergruhle schrieb:Leider kann man mit AdBlock nicht so einfach dieses bekloppte "Lost & Found"-Bild samt zugehörigem div ausblenden (das Bild ja, aber das schwarze div bleibt). Kann man das Div anhand der ID einfach mit Greasemonkey ausblenden? Ich habe bisher noch keine Greasemonkey-Skripte geschrieben...
Und schon ist "Lost & Found" wieder wegCode:...
![]()
// ==UserScript==
// @name GC Hide Lost&Found
// @namespace http://www.hz6.de
// @description Versteckt das neue Lost & Found Banner
// @include http://www.geocaching.com/seek/cache_details.aspx*
// ==/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("h2.NoSpacing + table + br, h2.NoSpacing + table > tbody > tr + tr + tr, table.CacheInformationTable > tbody tr:nth-child(1), table.CacheInformationTable > tbody tr:nth-child(3),table.CacheInformationTable > tbody tr:nth-child(4), table.CacheInformationTable > tbody tr:nth-child(5),table.CacheDisclaimerTable, .MainLogo, div#yui-g > table > tbody > tr > td:nth-child(2), div#yui-g > table > tbody > tr > td:nth-child(3) iframe, .LFNominateBanner, #ctl00_ContentBody_lblFindCounts + p, .BanManWidget, .BreadcrumbsWidget { display: none; }");
addGlobalStyle("#ctl00_cacheCodeWidget { margin-top:0; }");
addGlobalStyle("#ctl00_cacheCodeWidget p { margin-top:-1em; }");