By Macjoomla on Friday, 25 May 2018
Posted in General
Likes 0
Views 684
Votes 0
Hello,

how can i move the mainmenu in charm template to the left?

I was asking this some time ago for Vanilla Template, but this does not work with charm: https://stackideas.com/forums/how-to-move-mainmenu-to-the-left

Thank you and best regards, Macjoomla
Hi,

To move the menu to the left you will need to insert below codes into your custom css

[gist type="php"]

#sp-header .sp-megamenu-wrapper {
-webkit-justify-content: flex-start;
-ms-justify-content: flex-start;
justify-content: flex-start;
}

#sp-header .row {
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}

.sp-megamenu-wrapper #offcanvas-toggler.offcanvas-toggler-right {
-webkit-order: 0;
-ms-order: 0;
order: 0;
margin-left: 0;
margin-right: 20px;
}

#offcanvas-toggler.offcanvas-toggler-left {
float: right;
margin-right: 0;
margin-left: 20px;
}

[/gist]
·
Wednesday, 30 May 2018 10:59
·
0 Likes
·
0 Votes
·
0 Comments
·
Hm, we do not have a menu position on the left for charm as this template is designed to have menus appear at the top.
·
Friday, 25 May 2018 22:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mark, thank you for your fast answer and sorry for not being clear enough. I don’t want another module position, but I want to show the menu left aligned instead of aligned to the right.

Thank you and best regards, Macjoomla
·
Friday, 25 May 2018 23:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Sorry, but still unclear to me. Would you mind posting a screen shot of what you are trying to achieve?
·
Saturday, 26 May 2018 01:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mark,

now with screenshot. Just want to move the menu to the left.

In this thread you helped me with same question for Vanilla: https://stackideas.com/forums/how-to-move-mainmenu-to-the-left

Thank you and best regards, Macjoomla
·
Tuesday, 29 May 2018 23:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Great, Thank you, Chang
·
Wednesday, 30 May 2018 16:34
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome, glad that your issue is resolved now.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding
·
Wednesday, 30 May 2018 18:20
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post