PDA

View Full Version : Sidebar Blocks [Questions]


staffurdu
11-06-2010, 03:19 PM
Hello there,

Please see this image.

http://i841.photobucket.com/albums/zz338/mujahidtaban/Temporary/c4f3f91e.png

I have pointed-out three things and asked three questions about them.

Can you please help me with these three issues?

staffurdu
11-07-2010, 06:41 PM
no one knows?

ProFifaLeagues
11-07-2010, 06:46 PM
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:
#sidebar_button { _display: inline; } to this:

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:
#sidebar_container a.collapse { position:static; }
to

Code:
#sidebar_container a.collapse { display: none; }