Hi,
I’m not sure this is possible but thought I would ask as you guys tend to find amazing ways to do things.
I have a client that wants (on page load) “logo left/menu below” and then when you scroll down and the header shrinks have “logo left/menu right”. Is this possible?
Thank!
Slade
Hi Slade!
Can you please send us a link of your web site?
We might be able to give a width at the menu and get it below.
Thanks a lot
Best regards,
Basilis
Hi Basilis! Thanks for taking a look.
The site is in the early stages of development. I am placing login info in the private content area.
p.s. – I currently have it set as “logo left/menu right” but feel free to play with the Header settings (“logo left/menu below”) as needed.
Thanks!
Slade
Hi!
Thank you for the update. Looks like you manage to accomplished it with the following css code.
.header-scrolled #header_main_alternate {
position: absolute;
top: 25px;
right: 0;
width: 77%;
}
Cheers!
Ismael
Hi Ismael,
Yes, I got it to do what I wanted however in the process of aligning the scrolled navigation to the right it Reversed the menu items. Any ideas?
Thanks!
Slade
Hey!
Please remove this modification.
.header-scrolled .av-main-nav li {
float: right !important;
}
UPDATE: Add this css code:
.header-scrolled .av-main-nav li {
float: none;
display: inline-block;
}
.header-scrolled .av-main-nav-wrap ul {
margin: 0px !important;
text-align: right;
}
Cheers!
Ismael
Brilliant! Thanks Ismael!