Hi @Joshua,
Sorry, we don’t have Fixed Header Top Option in this theme, you can try other themes like “Clean Box Pro, Clean Journal Pro, Studio Pro, Catch Adaptive Pro, Full Frame Pro, Gridalicious Pro and so on”
But if you really like to make that menu fixed. Then you can try adding the following CSS in “Appearance => Theme Options => Custom CSS” box. But it’s not sure about it.
body {
padding-top: 46px;
}
#branding #access {
position: absolute;
left: 0;
top: 0;
width: 100%;
}
#access ul li.default-menu {
display: none;
}
#branding #access .menu {
display: block;
margin: 0 auto;
width: 978px;
}
@media screen and (max-width: 1000px) {
body {
padding-top: 38px;
}
#branding #access .menu {
width: 700px;
}
}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
#branding #access .menu {
width: 720px;
}
}
@media screen and (max-width: 767px) {
#branding #access .menu {
display: none;
}
#access .sb-holder {
width: 480px;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
#access .sb-holder {
width: 450px;
}
}
@media screen and (max-width: 480px) {
#access .sb-holder {
width: 300px;
}
}
@media screen and (max-width: 319px) {
#access .sb-holder {
width: 100%;
}
}