简体   繁体   English

WordPress 23下拉菜单在iPhone上不起作用

[英]Wordpress Twentythirteen Dropdown Menu Not Working on iPhone

The nav menu on my Wordpress Twentythirteen theme-based site works fine, in the normal horizontal fashion, at desktop/laptop/iPad window sizes. 我的Wordpress 23主题网站上的导航菜单在台式机/笔记本电脑/ iPad窗口大小下以正常水平方式可以正常工作。 Here's the URL: 这是网址:

http://www.radionowhere.net/sandbox http://www.radionowhere.net/sandbox

When viewed on an iPhone, it collapses to the word "Menu", accompanied by a down arrow, which, when clicked, is supposed to display all the pages linked to in the nav menu in one vertical column, which displaces the rest of the page content below it. 在iPhone上查看时,它会折叠成“菜单”字样,并带有向下箭头,当单击该箭头时,该菜单应显示导航菜单中链接到的所有页面在一个垂直列中,从而将其余部分替换它下面的页面内容。

In its current state on my site, however, clicking the "Menu" link on an iPhone causes only the first two page links to appear, and instead of displacing the rest of the page as they should, they sort of overwrite it instead. 但是,在我网站上的当前状态下,单击iPhone上的“菜单”链接将仅显示前两个页面链接,而不是按原样替换页面的其余部分,而是将其覆盖。 It's a mess. 一团糟。

I'm guessing this may have something to do with modifications I've made to the positions of various divs in the file "home.css", but can't figure out exactly how to address the issue. 我猜想这可能与我对“ home.css”文件中各个div的位置所做的修改有关,但无法确切地知道如何解决该问题。

Any ideas welcome - thanks! 欢迎任何想法-谢谢!

In home.css, you have 在home.css中,

@media (max-width: 550px){
    ...
    #masthead {
        height: 170px;
    }
    ...
}

When the menu button is clicked and a dropdown menu is formed, the header (#masthead), which wraps the menu, must expand as well. 单击菜单按钮并形成一个下拉菜单后,包装菜单的标题(#masthead)也必须展开。 Fixing #masthead at 170px prevents it from expanding. 将#标头固定为170像素可防止其扩展。 Try replacing this with 尝试将其替换为

@media (max-width: 550px){
    ...
    #masthead {
        height: 100%;
    }
    ...
}

which allows the header to expand to contain all of its children, including the menu. 它允许标题扩展为包含其所有子项,包括菜单。

Hope this helped and good luck! 希望这对您有所帮助,并祝您好运!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM