Hi!
You have problems with styles.
Theme layout styles … hm … are not optimal! )
How to fix.
custom-styles.css line 378:
#container {
padding-left: 215px;
padding-right: 0px;
}
change to:
#container {
width: 950px;
padding-right: 0px;
}
custom-styles.css line 379:
#main-col { width: 100%; }
change to (comment line):
/* #main-col { width: 100%; } */
custom-styles.css line 398:
#sidebar-shell-1 {
margin-left: -100%;
margin-right: 15px;
left: auto;
right: 215px;
}
change to (comment all):
/* #sidebar-shell-1 {
margin-left: -100%;
margin-right: 15px;
left: auto;
right: 215px;
} */
style.css line 362:
#main-col {
width: 725px;
float: left;
position: relative;
margin-left: 0;
margin-right: 0;
}
change to (float: right):
#main-col {
width: 725px;
float: right;
position: relative;
margin-left: 0;
margin-right: 0;
}
Don’t forget to make backup of files before changing them!