Fixed Menu

It is possible to fix the upper menu? How can I do it?

Hi @carolrosag,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

nav.navbar.navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

header#masthead {
    margin-top: 65px;
}

Best Regards,
Movin