Normally when you click the Ozzu logo it will take you up or back one level from your current location, similar to the way a "../" folder works in an FTP program or a website directory listing. If you would rather have the logo always take you to the forum index, you can use this user script to do that. The script should work in Greasemonkey for Firefox and Google Chromes .user.js extensions.
I've included both the code for you to play with here in the post, and a compressed ".user.js" file if you just want to install it like any other user script and be done.
// ==UserScript==
// @name Ozzu Logo Destination Override
// @description Forces the Ozzu logo to always lead to the forum index, instead of up one level
// @match http://www.ozzu.com/*
// ==/UserScript==
(function(){
var logo = document.getElementById('homepageLogoLink');
if(logo)
{
logo.getElementsByTagName('a')[0].href = '/forum/';
logo.getElementsByTagName('img')[0].alt = 'Forum Index';
}
})();
- // ==UserScript==
- // @name Ozzu Logo Destination Override
- // @description Forces the Ozzu logo to always lead to the forum index, instead of up one level
- // @match http://www.ozzu.com/*
- // ==/UserScript==
- (function(){
- var logo = document.getElementById('homepageLogoLink');
- if(logo)
- {
- logo.getElementsByTagName('a')[0].href = '/forum/';
- logo.getElementsByTagName('img')[0].alt = 'Forum Index';
- }
- })();
Strong with this one, the sudo is.