Is there a way to push the logo on my main navigation down? Thank you!
Hey mframe,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#top #header .logo a {
display: flex;
align-items: center;
}
Hope this helps :)
Best regards,
Nikko
How do you get this to work on the transparent logo?
Hi ewingmh,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#top #header .logo img {
max-height: 70%;
}
#top #header .logo img.alternate {
top: 15%;
}
Hope this helps :)
Best regards,
Nikko
I don’t want to make my logo any smaller. I just want the same code to apply to the transparent logo as well.
Hi,
I see, please try to add this css code:
#top .av_header_transparency .logo img.alternate {
top: 5px;
}
Hope this helps :)
Best regards,
Nikko
the transition is not seamless – the transparency logo slides up and then the black non-transparency appears below it.
Hi ewingmh,
Can you try to replace this code I gave:
#top .av_header_transparency .logo img.alternate {
top: 5px;
}
to:
#top .av_header_transparency .logo img.alternate,
#top .logo img.alternate {
top: 5px;
}
Let us know if this helps.
Best regards,
Nikko