This code will add the space between sidebars m8
This code adds space between the sideblocks
goto your additional.css template and add
#sidebar_container .underblock {background: none; height: 10px;}
#sidebar_container > ul {
-moz-border-radius:0px;
-webkit-border-radius:: 0px;
-moz-box-shadow: none;
background-color:transparent;
border:0px;
}
#sidebar_container .block {
background-color:{vb:stylevar forum_sidebar_background.backgroundColor};
border:{vb:stylevar forum_sidebar_border};
-moz-border-radius:{vb:stylevar border_radius};
-webkit-border-radius: {vb:stylevar border_radius};
-moz-box-shadow:-2px 2px 2px {vb:stylevar shadow_color};
}
--------------- Added 07 Nov 2010 at 20:48 ---------------
If you want to prevent your users from collapsing the sidebar, open forumhome.css and change this code:
Code:
PHP Code:
#sidebar_button { _display: inline; }
to this:
Code:
PHP Code:
#sidebar_button { display: none; }
To prevent your users to collapse the forum blocks, change in admincp>styles>change style>cms section>forumhome.css
Code:
PHP Code:
#sidebar_container a.collapse { position:static; }
to
Code:
PHP Code:
#sidebar_container a.collapse { display: none; }