In the index.php find:
<div id="jf-mainnav">
on the line before this add
</div>
<div class="main clearfix">
This will put the menu on the next line down, but it will stay floated right. If you want to float it left then in template.css find:
#jf-mainnav {
float: right;
And alter the float to left.
Next in template.css find:
/* HEADER */
#jf-header {
position: fixed;
top: 0;
z-index: 99;
height: 70px;
transition: background 0.2s linear 0s;
And alter the height, around 120px worked for me, but it depends on your font/logo sizes.
Let me know how you get on