繁体   English   中英

标题图片未显示在wordpress上

[英]Header image not showing on wordpress

我对主题做了一些更改,我一定搞砸了! 我的标题图片仅显示一半...问题出在哪里? 我已经尝试了很多事情,但是我什么都无法解决,如果遵循我的网址: www.vincihairclinic.net

这是我的标头代码:

<div id="nav">
    <?php /* The navigation menu */ ?>
    <div id="header-menu-wrap" class="clearfix">
        <?php
        /* Header menu */
        $args = array(
            'container' => '',
            'menu_id' => 'header-menu',
            'menu_class' => graphene_get_menu_class( 'menu clearfix' ),
            'fallback_cb' => 'graphene_default_menu',
            'depth' => 5,
            'theme_location' => 'Header Menu',
        );
        if ( ! $graphene_settings['disable_menu_desc'] )
            $args = array_merge( $args, array( 'walker' => new Graphene_Description_Walker() ) );

        wp_nav_menu( apply_filters( 'graphene_header_menu_args', $args ) ); ?>

这是我的style.css代码:

 #header-menu-wrap 
        position: relative; 

    margin-top: -325px;
    float: left;
    z-index: 50;
    padding-left: 1px;

}

#header-menu 
    display: table !important;
    margin: 0 auto !important;
}
.have-secondary-menu #header-menu-wrap 
    border-bottom: 1px solid #000;
}
.dropdown #header-menu-wrap 
    background: none;
    border: none;
}
#header-menu,
#secondary-menu 
    margin: 0 10px;
    z-index: 20;
}
#header-menu > li 
    font: normal 14px arial;
    margin: 0 0 0 5px;
}
#header-menu > li:first-child 
    margin-left: 0;
}
#header-menu > li > a 
    color: #fff;
    line-height: 16px;
    padding: 9px 10px 10px;
}
#header-menu > li > a > .desc 
    display: block;
    font-size: 11px;
    color: #aaa;
}
#header-menu > li.menu-item-ancestor > a {
    background: url(images/sprite_master.png) -877px -236px no-repeat transparent;
    padding-left: 26px;
}

您已经给了css属性问题,将其删除并查看

.header-img 
{
  margin-left:-489px
}

有一个插件或其他主题选项集正在更改.header-img的左边距样式。 我查看了Graphene主题,但在主题中什么都没看到,因此可能是插件。 .header-img是WordPress主题中常见的CSS类。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM