The first thing you need to do to make sure your sidebar stays within your content block is...........
Go to the skin you are going to add the sidebar to and scroll down until you find in the CSS
.mycontent {
width: 90%;
padding: 20px;
margin: 10px auto;
}
Yours may have more detail or less detail than the above but whatever you have add (overflow: hidden;)
So it will look something like this
.mycontent {
width: 90%;
padding: 20px;
margin: 10px auto;
overflow: hidden;
}
Once you have done that you can then add the sidebar................CONT.






