I am trying to figure out how to design a two column layout website using CMSMS. I used the code below in the CSS.
Code: Select all
div#main {
position:relative;
float: left;
margin-left: 2%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
line-height:1.5;
width:73%;
padding: 1% 0 0 0;
}
div#right{
position: relative;
float: right;
margin-top: 5%;
width: 200px;
margin: 10px 0 0 0;
padding: 0px;
}
Another problem I am facing is that the column on the right needs to have different content in different pages.

It would be great if someone can help me out in this.
Thanks in advance,
Neo