to fix one issue the modal being under the nav bar open your themes style.css file and edit these lines:
nav.navbar-default {
background-color: #fff;
border: 0;
border-radius: 0px;
margin-bottom: 0;
-webkit-animation-duration: 0.6s!important;
z-index: 55555;
border-bottom: 1px solid rgba(0,0,0,0.08);
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.08);
}
to this
nav.navbar-default {
background-color: #fff;
border: 0;
border-radius: 0px;
margin-bottom: 0;
-webkit-animation-duration: 0.6s!important;
z-index: 99;
border-bottom: 1px solid rgba(0,0,0,0.08);
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.08);
}