Pro-Jump PowerBocking Jumping Stilts Forum - Community for Power bocking / Pro Jumping!

Members Lounge => Your Suggestions => Topic started by: 3.141592654 on July 01, 2008, 03:50:30 PM

Title: No Favicon
Post by: 3.141592654 on July 01, 2008, 03:50:30 PM
I use FF3 and have my bookmarks sorted at the top below my address bar, however to conserve space I delete the unneeded text and go by the icon file. This forum doesn't seem to have one sadly :/

(http://clip2net.com/clip/m8680/1214923278-clip-21kb.png)

I fixed this for myself by writing a script to run in firefox, maybe because i'm overly technical or over pedantic. Regardless.
Results were simple,
(http://clip2net.com/clip/m8680/1214923357-clip-47kb.png)

It's a simple wee aesthetic change which people may use and like more than they realise.

I use the following favicon file, http://silenceisdefeat.org/~lerferz/Hoofies.ico
(http://silenceisdefeat.org/~lerferz/Hoofies.ico)

It's just a small touch, and I'm probably the only one who cares. Oh well.
Title: Re: No Favicon
Post by: webmaster on July 01, 2008, 03:54:24 PM
Looks good, I was meant to make one for the forum & other sites but just never got round to it  :(
Title: Re: No Favicon
Post by: Nobby on August 20, 2008, 01:40:24 PM
 :haha: Still not got bushings on the site either Naz!  :nana:

-Nobby
Title: Re: No Favicon
Post by: webmaster on August 20, 2008, 01:44:48 PM
or the brackets  :o

I will get to it soon  :-[ I promise
Title: Re: No Favicon
Post by: Carma on August 20, 2008, 01:52:15 PM
Naz, I happily offer my pixel'ing skills to draw up an icon for you.

-Carma
Title: Re: No Favicon
Post by: webmaster on August 20, 2008, 01:55:47 PM
Nice one Go for it Carma
Thanks  :)  :thumbs:
Title: Re: No Favicon
Post by: Carma on August 20, 2008, 02:06:31 PM
I need to make one for out website anyway :)

-Carma
Title: Re: No Favicon
Post by: webmaster on August 28, 2008, 04:10:41 PM
finally put the parts on and I know how to put a favicon on a "normal" site but couldn't figure out how to do it on the forum so if anyone knows let me know  :thumbs:
Title: Re: No Favicon
Post by: 3.141592654 on August 28, 2008, 04:39:11 PM
i'm just thinking, and hoping really that you have access to the header section of the forum. I guess it'd be the place with all the PRO-JUMP images at the top. Just pop the favicon html in there? I guess?
Code: [Select]
<link rel="shortcut icon" href="favicon.ico" />

I don't think it should be that different from a normal website. just finding the layout template would be the way i would do it. there's probably more effecient ways like, but i'm a rookie.
Title: Re: No Favicon
Post by: Rodamus_Zero on September 04, 2008, 03:10:32 PM
How would a forum user add a custom favicon for their Pro-Jump bookmark?
Title: Re: No Favicon
Post by: 3.141592654 on September 04, 2008, 05:21:03 PM
Code: [Select]
// ==UserScript==
// @name           Favicon for forum
// @namespace      http://Lerferz.co.nr
// @description    adds a favicon
// @author   http://Lerferz.co.nr
// @include        http://www.projumpforum.co.uk/*
// ==/UserScript==
var link = document.createElement("link");
link.type = "image/x-icon";
link.rel = "shortcut icon";
link.href = "http://silenceisdefeat.org/~lerferz/Hoofies.ico";
document.getElementsByTagName("head")[0].appendChild(link);

There's the code for a Greasemonkey script for Firefox.