Archived topic
Sticky Logo Double Problem
7 replies · Started by Gerson on April 29, 2019
H, when I scroll down with the sticky header, the there appears two logos instead of one? How can I get rid of the second logo?
Hi there,
Any chance you can link us to your site?
Let me know :)
Hi there,
I'm only seeing one. Can you try clearing your browser cache?
I have - it happens only the moment you begin to scroll down - it appears and then dissapers off the page at the top. Its in the header.
Aha, you have your site logo element set to z-index: 200, which is higher than the sticky navigation.
Try adding this CSS:
.navigation-stick {
z-index: 201 !important;
}
Thank you! That's fixed it.
You're welcome :)