HI –
I added an extra header element and now I’m unable to see the search icon for my site….
Any way we can fix that? Maybe add the search icon to the right of the menu after “Contact”? or move the Donate button? Ideally it would be cool to have the search icon to the right of contact
Hi mcraig77!
move it to the left using this code in Quick CSS field:
#menu-item-search {
left: -45%
}
Adjust it as needed.
Cheers!
Andy
Cool that works. Anyway to change the responsive menu so it transisitons to the mobile menu before the search icon overlaps the contact text?
Hey!
then you need to add some media queries to adjust it for different browser screens. For example like this:
@media only screen and (max-width: 1024px) and (min-width: 767px) {
#menu-item-search {
left: -30%
}}
Adjust max-width and/or min-width value for different browser screens and then change left value as needed.
Cheers!
Andy