我正在使用广告素材template作为我的github页面。但是,虽然模板的移动版本在左上角显示导航,但我github page的移动版本却没有。有什么建议?我的版本代码在github上。一旦我将模板提交到我的页面就开始了,我的github页面上的未更改模板可以查看here(显示没有导航)。
谢谢!
答案 0 :(得分:0)
最初我认为问题与脚本标记的顺序有关,但在查看控制台时,您似乎遇到了一些错误(Mixed Content: The page at 'https://brandonlind.github.io/' was loaded over HTTPS
)。我会尝试在脚本链接ala http:// to https://
中添加“s”。
尝试更改:
<script>"http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Arimo:400,700' rel='stylesheet' type='text/css'>
为:
<script>"https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Arimo:400,700' rel='stylesheet' type='text/css'>
我不是百分百肯定这会解决问题,但我认为这可能会有所帮助。 如果它无法正确读取jquery脚本标记,那么它将能够读取其他脚本标记。