Shifting your tags cloud to a different position
If you write posts in two languages and also try to use tags for SEO (and Google LOVES tags), you'll end up with a huge tags cloud in your blog.
Unfortunately, most default blog themes position the tags cloud almost at the top of the side bar, before the "news" section (in which most widgets are positioned).
This is a small script I used in my blog (I use the PaperClip theme) to shift the tags cloud downwards and delete the word "news" from the widgets section. Ohad came up with the idea, and I just made few small improvements. This code shift the tags cloud AFTER the page is loaded by using Javascript.
Just go to "Global Settings", "Title, Description and News", and paste this code into the "Raw Header" textbox:
<script type="text/javascript">
function addLoadEvent(func)
{
var oldonload = window.onload;
if (typeof window.onload != 'function')
{
window.onload = func;
}
else
{
window.onload = function()
{
oldonload();
func();
}
}
}
addLoadEvent (function()
{
document.getElementById("NewsSidebar").innerHTML = document.getElementById("NewsSidebar").innerHTML.replace("News","");
var el = document.getElementById("leftmenu").removeChild(document.getElementById("TagSideBar"));
document.getElementById("leftmenu").insertBefore(el, document.getElementById("ArchiveSideBar"));
});
</script>