admin管理员组文章数量:1122832
I'm trying to remove the hamburger menu from the Twenty Twenty Four theme while in mobile view and have the navigation appear at the top of the page vertically.
I'm able to remove the hamburger button with the following code:
@media (max-width: 600px)
{
button.wp-block-navigation__responsive-container-open
{
display: none;
}
}
And make the navigation icons appear with this code:
.wp-block-navigation__responsive-container
{
display:block;
}
However, the navigation links don't appear vertically and they appear in the background of the website as I scroll.
Any suggestions?
I'm trying to remove the hamburger menu from the Twenty Twenty Four theme while in mobile view and have the navigation appear at the top of the page vertically.
I'm able to remove the hamburger button with the following code:
@media (max-width: 600px)
{
button.wp-block-navigation__responsive-container-open
{
display: none;
}
}
And make the navigation icons appear with this code:
.wp-block-navigation__responsive-container
{
display:block;
}
However, the navigation links don't appear vertically and they appear in the background of the website as I scroll.
Any suggestions?
Share Improve this question edited May 31, 2024 at 16:32 Chris Cox 2,2661 gold badge13 silver badges22 bronze badges asked May 31, 2024 at 3:02 CarlisleCarlisle 11 bronze badge1 Answer
Reset to default 0At its heart this is a CSS question rather than a WordPress-specific question, but there is one aspect of it that's specific to WordPress: since you're talking about extensively overriding a default theme's behaviour you should start by creating a child theme for your edits to live in, so they're not overwritten when Twenty Twenty Four updates.
Once you've done that, it's just a matter of inspecting the element in your browser's Dev Tools and overriding the default behaviour in your child theme's stylesheet.
本文标签: cssHow do I remove the hamburger menu from the Twenty Twenty Four theme
版权声明:本文标题:css - How do I remove the hamburger menu from the Twenty Twenty Four theme? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736305324a1932552.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论