I am using the header layout (Logo left, menu below). I want to align the menu to the right and keep the logo in the top container aligned left. I have tried doing this through CSS but cannot get it to work. What code should I use?
Hey harrisinternet!
Thank you for visiting the support forum!
You can add this on Quick CSS or custom.css:
.html_header_top.html_bottom_nav_header .main_menu>div, .html_header_top.html_bottom_nav_header .main_menu ul:first-child {
width: auto;
float: right;
}
Best regards,
Ismael
It worked! thank you.