我已将以下内容添加到<head>
:
<link rel="stylesheet" type="text/css" media="all and (min-width: 481px) and (max-width: 1024px)" href="<?php bloginfo('template_directory'); ?>/css/tablet.css" />`
对于header.php的主页面,它工作正常。但是,如果我在使用firebug进行检查后再说:http://mysyte.com/products-page/checkout/我可以看到浏览器甚至没有加载此文件,即使我为此文件(tablet.css)中的页面分配了很多属性。
您能建议什么,在哪里寻找问题?谢谢!
P.S。平台 - wordpress和电子商务wp插件。
答案 0 :(得分:0)
您是否曾尝试回复博客信息功能,例如......
<link rel="stylesheet" type="text/css" media="all and (min-width: 481px) and (max-width: 1024px)" href="<?php echo bloginfo('template_directory'); ?>/css/tablet.css" />`