Hello @marketimpress,
The best way to make the topbar as fixed right above the menu bar, please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb)
(function($){
$('.x-topbar').prependTo('.x-navbar');
})(jQuery);
And by the way, you are having some issue with your topbar because you are using a <table>
html tag inside a <p>
tag which is the wrapper of the topbar content. This is invalid and not allowed. Sooner or later you will have problems and will get complicated. I would recommend that you update your topbar content and use the column shortcodes instead like this:
</p>[container id="maptopbar"][column type="1/4"] Icon 1 shortcode here [/column] [column type="1/4"] Icon 2 shortcode here [/column] [column type="1/4"] Icon 3 shortcode here [/column] [column type="1/4" last="true"] Icon 4 shortcode here [/column][/container]
And with this set up, you must also update the css code into this:
maptopbar {
font-size: 14px;
color: #1c335d;
background: lightgrey;
}
The fixed position will be taken cared by the JS code and the columns were by the use of container and column shortcodes.
We would loved to know if this has work for you. Thank you.