ok!
Change your css this way:
theme.css line 54:
#section-header {
position: relative;
left: -25px;
}
change to:
#section-header {
position: relative;
/*left: -25px;*/
}
skeleton.css line 266:
.container .five.columns {
width: 310px;
}
change to:
.container .five.columns {
width: 310px;
padding-left: 20px;
}
styles.css line 258:
.sidebar > * {
padding: 0 0 0 8%;
width: 91%;
}
change to:
/*.sidebar > * {
padding: 0 0 0 8%;
width: 91%;
}*/
styles.css line 273:
.widget {
margin-bottom: 40px;
display: inline-block;
max-width: 100%;
width: 100%;
}
change to:
.widget {
margin-bottom: 40px;
/*display: inline-block;
max-width: 100%;
width: 100%;*/
}
Don’t forget to backup changed files!
And you have to fix a javascript error:
Uncaught TypeError: Cannot read property 'top' of undefined sf.js:111
It causes widget to be fixed too early!