Quote:
Originally Posted by Igel1
or write the following in the additional.css
Code:
#sidebar_container a.collapse {
display: none;
}
|
This does not seem to disable the vertical collapse in either the default style or in my custom style. The "-" button is still visible and clickable and the entire sidebar collapses.
Correction: It DOES work but only if you add this to the TOP of additionalcss.css
What I added was this:
Code:
#sidebar_button_link {
display:none;
}
#sidebar_container a.collapse {
display: none;
}