paulpablito
Member
Posted 5 months ago #
Hi,
I love this theme. I have a little question (I tried to find in the blog without success): I moved the navbar to the top but when I go over a menu, the pop-up with the sub menu goes "up", out of the page. It's possible to set the sub-menu on the navbar to open down and don't up.
Thank you in advance and sorry for my poor english.
Paolo.
Yes, you can use CSS in a child theme or a CSS plugin (like Jetpack) to do this. I recommend using Firebug for CSS work--makes it much easier.
You'd need to reset the positioning on the submenus, probably something like this:
#header-menu ul.menu ul {
top: 100% !important;
bottom: auto;
}
#header-menu ul.menu ul ul {
top: 0 !important;
}
You may need to play around with it to get the look you want. We don't offer CSS support on this forum, but the above resources should get you started.
paulpablito
Member
Posted 4 months ago #
Thank you very much!
I'll get right to work.
Besta regards,
Paolo.
paulpablito
Member
Posted 4 months ago #
Hi Caroline, now it's ok!!! The sub menu pop down now.
Thank you very much!!