Archived topic
Slider side menu logo issue
3 replies · Started by Jeff on July 5, 2022
We're using Slider along with dynamic translation on DailyNewsBrief.com and we're running into an issue where the translation of "The Daily Newsbrief" on the bar will sometimes extend past the hamburger menu.
For example: https://dailynewsbrief.com/es/
Obviously not optimal.
Can you recommend a fix that keeps the dynamic logo clear?
Hi Jeff,
In Appearance > Customize > Additional CSS, you have this code:
#site-navigation .navigation-branding {
display: block;
height: 100px;
margin: 120px 0 auto;
}
Try altering it into something like this:
#site-navigation .navigation-branding {
display: block;
height: 100px;
margin: auto 0 auto;
}
This should put branding in the center vertically.
Hope this helps!
Thanks Fernando. I was hoping for a way to anchor it under the hamburger, but that works well too.
You’re welcome Jeff!