0 votes
by (440 points)
How do can i show and hide ui-bar for differente Passage? (like i dont want ui-bar show in Start Menu)...  I not talk about stow/stowed...

 

Thanks guys o7.

1 Answer

+1 vote
by (68.6k points)
selected by
 
Best answer

Add the following style to your stylesheet:

.hideui #ui-bar {
	display: none;
}

Then on any passage where you want to hide the UI bar, simply tag the passage with hideui.

by (640 points)
Is there a tag to collapse/expand the UI too?
by (68.6k points)

No.  Though you may use its API to do so.  For example:

<<script>>UIBar.stow()<</script>>
<<script>>UIBar.unstow()<</script>>

 

by (640 points)
Thanks, it works as intended.
...