



Removes the "Next blog" link from the navigation bar on Blogger blogs.
I'm usually reading on Blogger instead of writing (and this code doesn't seem to help that), but something that does is adding this after the code in this style.
@-moz-document domain("blogspot.com") {
#navbar-ifram { display: none !important; }
}
Updated version:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www.blogger.com/navbar") {
* { display: none ! important; }
}
I don't care for the "navbar", at all, and use the following to get rid of it:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www2.blogger.com/navbar") {
* { display: none ! important; }
}