Er moest aan de rechterkant nog een sidebar bij, dat heb ik gedaan, maten opgegeven etc.
Zie CSS:
Code: Select all
div#main {
margin-left: 26%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
margin-right: 26%; /* and some air on the right */
}
div#sidebar {
float: left; /* set sidebar on the left side. Change to right to float it right instead. */
width: 24%; /* sidebar width, if you change this please also change #main margins */
display: inline; /* FIX IE double margin bug */
margin-left: 0;
}
div#r-sidebar {
float: right; /* set sidebar on the left side. Change to right to float it right instead. */
width: 24%; /* sidebar width, if you change this please also change #main margins */
display: inline; /* FIX IE double margin bug */
margin-left: 0;
}
Code: Select all
{* Start Social Media *}
<div id="r-sidebar">
<h2>Social Media</h2>
</div>
{* End Social Media*}

Zie afbeelding:
