2

How can I edit the header at the top of the page? (i.e. using FogBugs 8 Default template, there is a blueish (#E0E9F1) bar with out company's logo on the left, and a "Login area" on the right..) The div of this header is called "banner" and it is controlled by "main.css" which is not editable within the FogBugz interface. If i could do a "display:none" on the bar that'd be great...I guess maybe I need to use the BugMonkey plugin to do this?

flag

1 Answer

2

Well... You could use BugMonkey with this CSS to hide both the blue bar and the menu above it:

#tbFull { display: none; }

However, this applies to all FogBugz pages. So if you apply it to all users, nobody would be able to use FogBugz at all. :-)

Better would be to add a new Wiki Template and add the CSS to that.


Edit: I noticed the CSS doesn't work in a Wiki Template. Putting this in the HTML part does work:

<script type="text/javascript">
$(document).ready(function() {
  $("#tbFull").hide();
  $("#navTop").hide();
});
</script>

I think the blue bar only shows for logged-in users anyway (plus on Wiki pages that aren't publicly visible). Others only see the #navTop Log On link.

link|flag
Thanks again Michel. You're the man. Yeah I guess i wish there was a non-jQuery alternative to this, but for the time being this will be great. I am new to FogBubz, but as of today I have not seen a blue-bar-less page on our Wiki, even when i'm "logged out". – Derek Aug 10 at 15:19

Your Answer

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