gpt4 book ai didi

wordpress - 不工作 : single background image for whole page (header + main content) wordpress

转载 作者:行者123 更新时间:2023-11-28 09:38:16 25 4
gpt4 key购买 nike

我似乎无法让单个图像出现在 WordPress 整个页面的背景中,其中包括标题、导航栏和主要内容页面。

对于此站点:LHollywood

使用 Mor10 的 Simone 单页登陆子主题。

我可以插入一个 div class="image"在使用 WordPress 仪表板的实际页面上,在导航栏下方,文本框后面(“拉丁好莱坞是......”)看起来没有问题。

但我也想让图像出现在页眉的背景中。

CSS:

.image {
width: 100%;
height: 36em;
display: block;
background: url("http://sheiler.info/latin/wp-content/uploads/2014/08/latinh-logo.png") no-repeat center center;
background-size: cover;
overflow: visible;
}

我尝试过但没有奏效,同时保留名称 .image这样我就不必更改 css:

  1. 已添加 <div class="image">header.php 文件。注意:header.php 中的原始编码不会关闭 -

    的底部 div

    div id="content"class="site-content">

像这样:

body <?php body_class(); ?>>
div id="page" class="hfeed site">
div class="image">
header id="masthead" class="site-header" role="banner">
a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'simone' ); ?></a>

<?php if ( get_header_image() && ('blank' == get_header_textcolor()) ) { ?>

<figure class="header-image">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="">
</a>
</figure>

等...

  1. 在 lander-style.css 中添加:
home.page.page-id-16.page-template-default {
background: url("images/latinh-logo.png") no-repeat center center;
}

我还没有成功地将类 ID 添加到其他现有的 div。

最佳答案

使用这段代码:

body {
background: url("http://sheiler.info/latin/wp-content/uploads/2014/08/latinh-logo.png") no-repeat 50% !important;
background-size: cover;
}

请确保不要让任何元素与背景重叠(我可以看到您的 header 有一个带有背景的 .site-branding 类,并且可能还有更多)

关于wordpress - 不工作 : single background image for whole page (header + main content) wordpress,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25466872/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com