Hi,
You can fix the both problems on your site with my solution below
Open templates/ja_onepage/local/css/themes/modern/template.css file
find and change
.logo .logo-control .logo-img {
margin: 15px 0;
}
.logo {
float: left;
margin: 15px 0;
}
.hero-unit {
margin: 59px 0 0;
padding: 0;
text-align: center;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
to
.logo .logo-control .logo-img {
margin: 0px;
}
.logo {
float: left;
margin: 0px;
}
.hero-unit {
margin: 102px 0 0;
padding: 0;
text-align: center;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
Hope it helps
Regards