The nav bar:
您的浮动:左;属性位于:
.custom #header #logo a { text-indent: -9999px; width: 450px; height: 169px; display: block; **float: left;** }
导致导航栏的行为很滑稽。您有两种选择:
去掉左边的浮点数清除徽标后的左侧浮标IE: 添加clear:left; or clear:both;
到您的.menu-custom-container
The Image:
似乎找不到标题。png输入
wp内容/主题/论文184/自定义/图像/标题。巴布亚新几内亚
此外,看起来您已将标题图像上载到主题中。
会是这样吗?http://euanmitchell.com.au/wp-content/uploads/2012/05/euanbannerv6.jpg
如果是这种情况,您可以完全删除背景图像,并将其余属性拆分为各个属性,因为#header包含以下代码:
background-image: url(http://euanmitchell.com.au/wp-content/uploads/2012/05/euanbannerv6.jpg);
因此,您的新css将是:
.custom #header { height:150px; background-color:transparent; background-position: center; background-repeat:no-repeat; }
这样就不会出现图像。
Edit:
此外,您不需要no repeat,因为它也位于#标题中,也不需要透明颜色,因为它是白色的。TBH他们没有添加任何内容,您添加的唯一不动产是背景位置:center;。