Hello,
Please read slider documentation – https://www.themepunch.com/revslider-doc/navigation/
Here is one-page demo – https://www.8theme.com/demo/xstore/typography/ By default, there is no possibility to show the menu in another way on mobile.
But you can achieve the desired result via some workaround, for example, add the menu in the first row on the page and hide it on all devices except required, using Column Settings > Responsive Options, to disable default mobile menu, add this code in Custom css for page http://prntscr.com/jigkr8:
@media only screen and (max-width: 992px){
.et-header-full-width .header-wrapper .navbar-toggle {
display: none;
}
}
Regards