If your website has a sticky navigation bar there might some overlapping issues but don't worry the fix is pretty straightforward.
- Go to the page where you have added the Hello bar module
- Edit the page and click Settings > Advanced
- In the header HTML section add the following code.
- Publish the page.
<script>
$(window).on("load resize", function (event) {
var $navbar = $(".hello-bar-module");
var $body = $(".sticky-menu.active");
$body.css("top", $navbar.outerHeight());
});
</script>
➤ FURTHER READING
Hello Bar basic setup guide