Show sidebar except from main-site

proxydesign

Visiolist-Fan
I solved this by manually with HTML and CSS. I removed all the sidebar, so it don't show up in the mainsite. Then I edit join_form.html and manually write this div:
Code:
<div id="sidebar2">
Sidebar-right-content-here
</div>
The CSS-file is like this:
Code:
#sidebar2 {
position:relative;
top:1px;
float: right;
margin-right: -150px;
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
There is probably better ways to solve this, but it works and I am happy. :)
 

Mark

Administrator
Staff member
nothing wrong with this solution :) always several different ways to accomplish stuff.

nice work
 
Top