Viewing 3 reply threads
You must be logged in to reply to this topic.
Hi, I would like to swap the menu position with the logo position. In other words, move the logo to the right and the menu to the left:
Is that possible?
Thank you :)
Hello,
Add this code into your custom css box:
#logo {
float: right !important;
}
header#header #navigation {
float: left !important;
}
.header_tools {
padding-right: 24% !important;
}
Best regards!
Great works perfectly! Thank you :)
Can I also move the Search button ? It is now lost somewhere in-between ;)
Hello,
In the code i previously gave you, this part:
.header_tools {
padding-right: 24% !important;
}
is responsible for rearranging the search icon position (search is part of the header tools). change it’s value to your wish, until you have the desired result.
Best regards!
You must be logged in to reply to this topic.