admin管理员组文章数量:1316023
I have customised the Twenty Thirteen wordpress theme with a child theme but the mobile menu does not expand when pressed. I have removed all the styles from the child theme to see if anything I have implemented was causing the issue but even with the styles of the parent Twenty Thirteen theme the mobile menu does not expand. I have deactivated all plugins and again this did not help. Could really use some help with this as I am at a loss.
The site I'm working on is /
I have customised the Twenty Thirteen wordpress theme with a child theme but the mobile menu does not expand when pressed. I have removed all the styles from the child theme to see if anything I have implemented was causing the issue but even with the styles of the parent Twenty Thirteen theme the mobile menu does not expand. I have deactivated all plugins and again this did not help. Could really use some help with this as I am at a loss.
The site I'm working on is http://tappingtherapyplus/
Share Improve this question asked Jun 1, 2015 at 12:31 user1850189user1850189 11 Answer
Reset to default 0This is code from the codex which enables your child inheritance.
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style')
);
}
https://codex.wordpress/Child_Themes
本文标签: Mobile Menu not working on TwentyThirteen child theme
版权声明:本文标题:Mobile Menu not working on TwentyThirteen child theme 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741992623a2409415.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论