Full screen menu on mobile

Hello,

is it possible to change the close symbol ( X ) position to the left or to center it ?
The class don´t work …
thanks for the help …

tom

Hi @tom2

You can adjust the position with the right margin.

For the side bar menu (initial margin is set at 10px):

<style>

.close-special-menu  {
	right: 300px;

}

</style>

For Full Screen Menu (original margin is set at 20px):

<style>

.nav-special.fullscreen-nav .close-special-menu {
	right: 300px;
}

</style>

MDS

2 Likes

Hi @MDS
thanks for your help. I have to do a class for this and add that code ? Or only add that code ?
thanks very much for your help
tom

Just add the code option 1 or option 2 and modify the #px as you need.

Hi @MDS
thanks a lot for your help.
happy new year
tom :blush:

You’re welcome.

HNY to you 2

MDS