Navigation modal top margin

Hey there,

my navigation modal is displayed wrong

It was not at this place before, has to be pushed down a little further
thanks for your help!

Hi There,

It’s because of this custom CSS. Please find it:

.my-menu .x-off-canvas-content {
    padding: 0 !important;
    bottom: auto;
    top: 0px;
    right: 20px;
}

And change to this:

.my-menu .x-off-canvas-content {
    padding: 0 !important;
    bottom: auto;
    top: 100px;
    right: 20px;
}

Hope it helps :slight_smile:

1 Like

thank you works great

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.