论文站点标题和导航菜单问题

时间:2012-06-20 作者:Les Thomas

不幸的是,在我正在帮助一位朋友的这个以论文为主题的Wordpress网站上,我设法使标题图像消失,水平导航菜单扭曲

www.euanmitchell.com.au

我已经粘贴了论文自定义的代码。css和自定义函数。下面是php。非常感谢您的帮助。

干杯

Les公司

    File: custom.css
Description: Custom styles for Thesis
More Info: http://diythemes.com/thesis/rtfm/custom-css/
*/

#header {
border: none;
background-image: url(http://euanmitchell.com.au/wp-conten...bannerv6.jpg);
background-repeat: no-repeat;
height: 208px;
padding: 0;
position: relative;
}

.custom #header #logo a {
text-indent: -9999px;
width: 450px;
height: 169px;
display: block;
float: left;
}

.custom .teaser {
width: 100%;
margin-top: 2em;
padding-top: 2em;
border-top: 1px dotted #bbb;
text-align: justify;
}
.custom .teasers_box {
padding-top: 0;
padding-bottom:0;
border-top: 0;
}

.custom #header { height:150px; background:transparent url(images/header.png) center no-repeat; } 



 <?php
/* ---:[ place your custom code below this line ]:---*/

remove_action(\'thesis_hook_before_header\', \'thesis_nav_menu\');
add_action(\'thesis_hook_after_header\', \'thesis_nav_menu\');
remove_action(\'thesis_hook_footer\', \'thesis_attribution\');

?>

1 个回复
SO网友:Kirill Fuchs

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;。

结束

相关推荐

Custom Post Type Menus

我正在写一个插件,因为我们的主要网站最终将被移植到WordPress。我已经为这个插件计划了多个自定义帖子类型,并希望将它们全部组合到一个主菜单中。大体上I want the \"Visitors\" link to be placed under \"Argus Admin\". 没有必要添加其他链接,因为我可以在任何地方“黑客”这些链接。 $v_args = array( \'labels\' => array ( \'nam