2012-04-26 41 views
0

网站WordPress的导航栏不可见

导航栏上是不可见的

任何CSS问题?

+0

有一些文件丢失。你可以检查它在谷歌浏览器... – 2012-04-26 11:18:12

+0

是否应该在黑色背景区域的激动酒吧? – SadullahCeran 2012-04-26 11:20:05

+0

导航的背景图像不加载 – Jack 2012-04-26 11:20:12

回答

1

看看wp-content/themes/immotech/style.css行184:

#top #nav ul { 
    display: none; 

而且有很多网站上的错误:

GET http://it.mediameans.de/themes/default/default.css 404 (Not Found) http://it.mediameans.de/:14 
GET http://it.mediameans.de/nivo-slider.css 404 (Not Found) http://it.mediameans.de/:14 
GET http://it.mediameans.de/js/cufon.js 404 (Not Found) http://it.mediameans.de/:14 
GET http://it.mediameans.de/js/quicksand.font.js 404 (Not Found) http://it.mediameans.de/:14 
GET http://it.mediameans.de/js/jquery.js 404 (Not Found) http://it.mediameans.de/:14 
GET http://it.mediameans.de/js/custom.js 404 (Not Found) http://it.mediameans.de/:14 
GET http://it.mediameans.de/scripts/jquery-1.7.1.min.js 404 (Not Found) http://it.mediameans.de/:14 
GET http://it.mediameans.de/jquery.nivo.slider.pack.js 404 (Not Found) http://it.mediameans.de/:14 
Uncaught TypeError: Property '$' of object [object Window] is not a function http://it.mediameans.de/:217 
GET http://it.mediameans.de/wp-content/themes/immotech/images/skin2/border_vertical.png 404 (Not Found) http://it.mediameans.de/:105 
+0

有些问题非常感谢:) – 2012-04-26 12:03:09

1

打开位于你的主题文件夹

您的header.php文件

找到这个部分..

<link rel="stylesheet" href="themes/default/default.css" type="text/css" media="screen" /> 
<link rel="stylesheet" href="nivo-slider.css" type="text/css" media="screen" /> 
<script type='text/javascript' src='js/jquery.js'></script> 
<script type='text/javascript' src='js/cufon.js'></script> 
<script type='text/javascript' src='js/quicksand.font.js'></script> 
<script type='text/javascript' src='js/custom.js'></script> 

将其更改为

// if you want to use the default stylesheet, copy the file default.css from the default theme folder and paste it into your theme folder, 
<link rel="stylesheet" href="<?php bloginfo('template_directory');?>/default.css" type="text/css" media="screen" /> 
<link rel="stylesheet" href="<?php bloginfo('template_directory');?>/nivo-slider.css" type="text/css" media="screen" /> 
<script type='text/javascript' src='<?php bloginfo('template_directory');?>/js/jquery.js'></script> 
<script type='text/javascript' src='<?php bloginfo('template_directory');?>/js/cufon.js'></script> 
<script type='text/javascript' src='<?php bloginfo('template_directory');?>/js/quicksand.font.js'></script> 
<script type='text/javascript' src='<?php bloginfo('template_directory');?>/js/custom.js'></script> 

请确认该文件位于你的主题文件夹中的正确的文件夹应该加载...

有一个通过文档http://codex.wordpress.org/Theme_Development

中号读