How do I get rid of a contents box that appears?

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
lisama
Rank 0
Rank 0
Posts: 2
Joined: October 30th, 2007, 7:51 am

How do I get rid of a contents box that appears?

Post by lisama »

Hi

I know this question may not be relevant to this forum but I thought it would be worth asking.

Having mad a few changes to pages within my Wiki I have noticed that at the top of some paged a box which list the contents of the page below. I can have it in view or select hide but although the box is smaller it is still sitting at the top of the page. I would like this to be hidden completely. Do you have any ideas?

Thanks
Lisa
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: How do I get rid of a contents box that appears?

Post by Paul »

The easiest way is by viewing source code, get the the tag name of that box, for example content-box.

then add this to your css file:

Code: Select all

#content-box
{
display: none;
}
Clear the cache and reload the page, see the effect.
Post Reply