Xanga Header Space Remover

By Brad Campbell Last update Jan 27, 2006 — Installed 1,256 times.
// ==UserScript==
// @name           Xanga Header Space Remover
// @namespace      Brad Campbell, tvguy05.blogspot.com
// @description    Removes the space above the header
// @include        http://www.xanga.com/*
// ==/UserScript==

function xpath(query) {
    return document.evaluate(query, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
}

var theDiv = xpath('//div[@style="height: 130px;"]').snapshotItem(0);

theDiv.style.display = "none";