Hi Clay,
Have you tried adding a top margin to the container?
All the best
Hi,
Not yet. How would I go about trying this? Is there a container option in the settings? Or how?
Thanks,
Clay
Hi Clay,
The below CSS should do it:
#responsive-menu-container {
margin-top: 195px;
}
All the best
Thanks, that’s working for me.
So my menu changes for tablet and phone. I been trying to change the position of the button in css and nothing is working. See below:
@media only screen and ( min-width: 480px ) and ( max-width: 767px ){
#responsive-menu-pro-container {
margin-top: 290px;
position: absolute;
}
#responsive-menu-pro-button {
margin-top: 290px;
!important;
position: absolute;
}
}
Hi there,
To change the button position you can just do this:
button#responsive-menu-pro-button {
top: 290px;
}
All the best
Hi,
Thanks! That’s what I needed.
Great support and wonderful plugin.
Awesome!
Oh wait, I forgot that being logged in the admin bar pushes the menu down.
Do you know how to check for being logged in/admin visible and then re-positioning the menu?
Thanks
Hi there,
Sure, there are loads of ways, I have posted a link to a function check below:
https://codex.wordpress.org/Function_Reference/is_admin_bar_showing
All the best
Thanks! I figured it out using:
@media only screen and (max-width: 479px){
.admin-bar button#responsive-menu-pro-button {
margin-top: 22px;
position: absolute;
}
or .logged-in
my menu moves around so much it might be easier to move the admin bar down and put the menu up top…
Hey there,
Great news and thanks for letting me know!
All the best