Archived topic
Sticky menu buttons
6 replies · Started by Terence on January 27, 2018
The primary navigation has no issue with the menu buttons ~~ http://i.imgur.com/GkDWp6z.png
But the sticky menu stretches the buttons to the full height of the menu -- http://i.imgur.com/BIE0JXp.png
I don't think this is anything I have done, so it must be latent and patent.
How do I stop the menu buttons from stretching when it scrolls?
#menu-primary-nav > .menu-item > a{
padding-left:20px;
padding-top:0px;
margin-top:0px;
}
Hi there,
Can you unlock the site?
Those CSS shouldn't be necessary.
I prefer not to unlock the site Leo, but I can send you a login.
Where should I send it?
You can send it through the account issue form: https://generatepress.com/contact/
Just be sure to mention this topic :)
What about reducing the sticky navigation height? https://docs.generatepress.com/article/sticky-navigation/#menu-item-height
Yup, thank you for helping me look in the right direction Leo.
That was part of the answer, but as there is no slider for the margin (only the padding), and the logo is an svg file so does its own thing, I had to hard code it like this...
/* define sticky menu buttons */
#masthead #sticky-navigation{
padding-top:12px;
padding-bottom:15px;
}
#sticky-navigation .navigation-logo img{
padding-bottom:0px;
padding-top:0px;
}
Make sense?
Yup looks good!