At the bottom part of the code that goes into the theme.css.liquid there is the line of code called #page container {padding-top:80px;
The number 80 is what needs to be changed. For my case I changed the number 80 to 107. Let me know if that works
#SearchDrawer { z-index:1001;
}
#shopify-section-header { position: fixed; z-index:1000; left:0; right:0;
-webkit-box-shadow:0px 2px 4px 0px rgba(0,0,0,.1);
-moz-box-shadow:0px 2px 4px 0px rgba(0,0,0,.1);
-ms-box-shadow:0px 2px 4px 0px rgba(0,0,0,.1);
-o-box-shadow:0px 2px 4px 0px rgba(0,0,0,.1); box-shadow:0px 2px 4px 0px rgba(0,0,0,.1); background-color: {{ settings.color_body_bg }};
}
#PageContainer { padding-top: 80px; }
@media screen and (max-width: 749px) {
#PageContainer { padding-top: 70px;
}
}