-
Hi guys,
Bit of a strange issue I’ve noticed since the latest GP update installed today.
My logo and SVG menu icon seem to be out of alignment. The logo and SVG icon are both 70px in height. But when I check the two sides, the navigation side (.nav-float-right #site-navigation) is slightly lower.
URL shared in private info.
Any suggestions appreciated.
Thanks,
Greg -
Hi Greg,
Are you still having the issue? The alignment looks pretty good to me here:
https://www.screencast.com/t/9BmzpZoOmVxyDid you change the HTML markup of the logo somehow? I see an extra div with
hide-on-mobile
class added which isn’t necessary by the way.Let me know 🙂
-
Hi Leo,
Thanks for your reply.
Yes, still having the issue – you can see it on your screenshot too, the menu icon looks as if it’s centered vertically whilst the logo is at the top. It’s not as noticeable on desktop but on mobile it’s more obvious.
Yes so I could display a simplified logo on mobile than tablet/desktop. Is there an easier way to do that now?
Thanks,
Greg -
Yes so I could display a simplified logo on mobile than tablet/desktop.
I believe the custom HTML is causing the issue – can you remove that solution to confirm?
The mobile header option might also work well for you:
This has been available for a long time though so not sure if you’ve already tried it.
Let me know if this works 🙂
-
Thanks for your reply, Leo.
Think I found the cause, it was two things.
The default flex alignment for .inside-header is set to center.
And .gp-icon svg has a default of ‘top: 0.125em’.So, I’ve set my own CSS to change these:
.inside-header { align-items: flex-start; } .custom-id svg { top: 0!important; }
Thanks,
Greg -
Glad to hear 🙂
- You must be logged in to reply to this topic.