Dear Buni Bunie,
please go to your_site/templates/sj_plus/css/template-purple.css and find the code:
#content_main {
width: 800px;
}
=>
#content_main {
margin-left: 0;
width: 800px;
}
find:
#content #yt_component {
-moz-box-sizing: border-box;
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #DDDDDD;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.12);
margin-bottom: 30px;
margin-top: -1px;
min-height: 294px;
padding: 15px;
width: 100%;
}
=>
#content #yt_component {
-moz-box-sizing: border-box;
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #DDDDDD;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.12);
margin-bottom: 30px;
margin-left: 10px;
margin-top: -1px;
min-height: 294px;
padding: 15px;
width: 100%;
}
find:
.module div.modcontent {
padding: 15px;
}
=>
.module div.modcontent {
padding: 10px;
}
Thanks