4

3

I don't want my users to be confused by references to Fog Creek Software.

How do I remove the Fog Creek Software logo and the links about discussion forums and such.

flag

3 Answers

5

Install BugMonkey and then add the following code to the Javascript section for all users:

$("div.head p").remove();
$(".welcome").remove();
$("img[alt='Fog Creek Software']").remove();
link|flag
please see Daniel's CSS answer below. – Rich Armstrong Jun 14 2010 at 14:30
5

You can do what Rich has suggested using the CSS input in BugMonkey:

div.head p, .welcome, img[alt='Fog Creek Software']
{
   display: none;
}
link|flag
2

I want to comment to the BugMonkey answer above, but I'm halted by the stupid new-user-can't-comment policy.

BugMonkey does not provide a satisfactory answer. The above solution still gives you the Welcome To FogBugz stuff for about half-a-second, making all the stuff you don't want to appear still appear to play a little peek-a-boo with the user. At least that's what happens here under Firefox with a direct local fast connection to our FogBugz site.

There needs to be a way of doing BugMonkey-style stuff on the HTML before the horse exits the barndoor.

link|flag
Try doing it with CSS – cdeszaq Apr 30 2010 at 16:00
See Daniel's answer for how to do this with CSS. fogbugz.stackexchange.com/questions/896/… – Babak Ghahremanpour May 18 2010 at 13:11

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.