gpt4 book ai didi

html - header 上的未知样式

转载 作者:行者123 更新时间:2023-11-28 02:19:34 25 4
gpt4 key购买 nike

关于 my website ,我的页眉和菜单之间显示了 80 像素的边距。这在首页上不是问题,只是在使用标准网站标题的博客上。

当我用谷歌检查它时,它说这是 div 上带有类自定义 header 的元素样式,而不是 CSS 的一部分。我正在使用 WordPress Twenty Sevente 的子主题。我查看了 CSS,但没有看到它说要添加边距的地方。我查看了 header-image.php 并没有找到任何东西。请注意,标题图片下方的边距在移动 View 中消失了。这是我在 child 和二十七岁时对 CSS/HTML 的了解:

子主题 CSS:

/*  Front Page: Header  */
.has-header-image .custom-header-media img,
.has-header-video .custom-header-media video,
.has-header-video .custom-header-media iframe {
position: absolute;
height: auto;
left: 50%;
max-width: 1000%;
min-height: 100%;
min-width: 100%;
min-width: 100vw; /* vw prevents 1px gap on left that 100% has */
width: auto;
top: 50%;
padding-bottom: 1px; /* Prevent header from extending beyond the footer */
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}

.has-header-image.twentyseventeen-front-page .site-branding,
.has-header-video.twentyseventeen-front-page .site-branding,
.has-header-image.home.blog .site-branding,
.has-header-video.home.sblog .site-branding {
display: table-cell;
vertical-align: top;
}

.has-header-image.twentyseventeen-front-page .site-branding,
.has-header-video.twentyseventeen-front-page .site-branding,
.has-header-image.home.blog .site-branding,
.has-header-video.home.blog .site-branding {
top: 40px;
display: block;
left: 0;
height: auto;
padding-top: 0;
position: absolute;
width: 100%;
}

body.has-header-image .site-title,
body.has-header-video .site-title,
body.has-header-image .site-title a,
body.has-header-video .site-title a {
color: #0F0566;
}

body.has-header-image .site-description,
body.has-header-video .site-description {
color: #2EE6D5;
opacity: 0.8;
font-size: 2rem;
}

.site-title {
font-family: Lato;
color: #0F0566;
font-size: 1.5rem;
text-transform: none;
}

.site-description {
font-family: Lato;
color: #0F0566;
position: absolute;
top: 70vh;
display: block;
left: 50vw;
height: auto;
padding-top: 0;
}

/* Scroll down arrow */

.site-header .menu-scroll-down {
display: block;
padding: 1em;
position: absolute;
right: 0;
margin: auto;
}

.site-header .menu-scroll-down .icon {
-webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
-ms-transform: rotate(90deg); /* IE 9 */
transform: rotate(90deg);
}

.site-header .menu-scroll-down {
color: #fff;
top: 1em;
}

.site-header .navigation-top .menu-scroll-down {
color: #767676;
top: 0.7em;
}

.menu-scroll-down:focus {
outline: thin dotted;
}

.menu-scroll-down .icon {
height: 50px;
width: 40px;
}

/* Blog Header */

body.has-header-image:not(.twentyseventeen-front-page):not(.home) .site-title,
body.has-header-video:not(.twentyseventeen-front-page):not(.home) .site-title,
body.has-header-image:not(.twentyseventeen-front-page):not(.home) .site-title a,
body.has-header-video:not(.twentyseventeen-front-page):not(.home) .site-title a {
color: #2EE6D5;
}

.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header {
margin-bottom: 0px;
}

.has-header-image:not(.twentyseventeen-front-page):not(.home) .site-description {
display: none;
}

二十十七个 CSS:

/*--------------------------------------------------------------
13.1 Header
--------------------------------------------------------------*/

#masthead .wrap {
position: relative;
}

.site-header {
background-color: #fafafa;
position: relative;
}

/* Site branding */

.site-branding {
padding: 1em 0;
position: relative;
-webkit-transition: margin-bottom 0.2s;
transition: margin-bottom 0.2s;
z-index: 3;
}

.site-branding a {
text-decoration: none;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s;
}

.site-branding a:hover,
.site-branding a:focus {
opacity: 0.7;
}

.site-title {
clear: none;
font-size: 24px;
font-size: 1.5rem;
font-weight: 800;
line-height: 1.25;
letter-spacing: 0.08em;
margin: 0;
padding: 0;
text-transform: uppercase;
}

.site-title,
.site-title a {
color: #222;
opacity: 1; /* Prevent opacity from changing during selective refreshes in the customize preview */
}

body.has-header-image .site-title,
body.has-header-video .site-title,
body.has-header-image .site-title a,
body.has-header-video .site-title a {
color: #fff;
}

.site-description {
color: #666;
font-size: 13px;
font-size: 0.8125rem;
margin-bottom: 0;
}

body.has-header-image .site-description,
body.has-header-video .site-description {
color: #fff;
opacity: 0.8;
}

.custom-logo-link {
display: inline-block;
padding-right: 1em;
vertical-align: middle;
width: auto;
}

.custom-logo-link img {
display: inline-block;
max-height: 80px;
width: auto;
}

body.home.title-tagline-hidden.has-header-image .custom-logo-link img,
body.home.title-tagline-hidden.has-header-video .custom-logo-link img {
max-height: 200px;
max-width: 100%;
}

.custom-logo-link a:hover,
.custom-logo-link a:focus {
opacity: 0.9;
}

body:not(.title-tagline-hidden) .site-branding-text {
display: inline-block;
vertical-align: middle;
}

.custom-header {
position: relative;
}

.has-header-image.twentyseventeen-front-page .custom-header,
.has-header-video.twentyseventeen-front-page .custom-header,
.has-header-image.home.blog .custom-header,
.has-header-video.home.blog .custom-header {
display: table;
height: 300px;
height: 75vh;
width: 100%;
}

.custom-header-media {
bottom: 0;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
width: 100%;
}

.custom-header-media:before {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.3+75 */
background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#4d000000", GradientType=0); /* IE6-9 */
bottom: 0;
content: "";
display: block;
height: 100%;
left: 0;
position: absolute;
right: 0;
z-index: 2;
}

.has-header-image .custom-header-media img,
.has-header-video .custom-header-media video,
.has-header-video .custom-header-media iframe {
position: fixed;
height: auto;
left: 50%;
max-width: 1000%;
min-height: 100%;
min-width: 100%;
min-width: 100vw; /* vw prevents 1px gap on left that 100% has */
width: auto;
top: 50%;
padding-bottom: 1px; /* Prevent header from extending beyond the footer */
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}

.wp-custom-header .wp-custom-header-video-button { /* Specificity prevents .color-dark button overrides */
background-color: rgba(34, 34, 34, 0.5);
border: 1px solid rgba(255, 255, 255, 0.6);
color: rgba(255, 255, 255, 0.6);
height: 45px;
overflow: hidden;
padding: 0;
position: fixed;
right: 30px;
top: 30px;
-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
width: 45px;
}

.wp-custom-header .wp-custom-header-video-button:hover,
.wp-custom-header .wp-custom-header-video-button:focus { /* Specificity prevents .color-dark button overrides */
border-color: rgba(255, 255, 255, 0.8);
background-color: rgba(34, 34, 34, 0.8);
color: #fff;
}

.admin-bar .wp-custom-header-video-button {
top: 62px;
}

.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media img {
bottom: 0;
position: absolute;
top: auto;
-ms-transform: translateX(-50%) translateY(0);
-moz-transform: translateX(-50%) translateY(0);
-webkit-transform: translateX(-50%) translateY(0);
transform: translateX(-50%) translateY(0);
}

/* For browsers that support 'object-fit' */
@supports ( object-fit: cover ) {
.has-header-image .custom-header-media img,
.has-header-video .custom-header-media video,
.has-header-video .custom-header-media iframe,
.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media img {
height: 100%;
left: 0;
-o-object-fit: cover;
object-fit: cover;
top: 0;
-ms-transform: none;
-moz-transform: none;
-webkit-transform: none;
transform: none;
width: 100%;
}
}

/* Hides div in Customizer preview when header images or videos change. */

body:not(.has-header-image):not(.has-header-video) .custom-header-media {
display: none;
}

.has-header-image.twentyseventeen-front-page .site-branding,
.has-header-video.twentyseventeen-front-page .site-branding,
.has-header-image.home.blog .site-branding,
.has-header-video.home.blog .site-branding {
display: table-cell;
height: 100%;
vertical-align: bottom;
}

header-image.php HTML:

<?php
/**
* Displays header media
*
* @package WordPress
* @subpackage Twenty_Seventeen
* @since 1.0
* @version 1.0
*/

?>
<div class="custom-header">

<div class="custom-header-media">
<?php the_custom_header_markup(); ?>
</div>

<?php get_template_part( 'template-parts/header/site', 'branding' ); ?>

</div><!-- .custom-header -->

最佳答案

似乎样式在一个单独的文件中。这应该可以解决您的问题:

@media(min-width: 768px) {
.blog .custom-header {
margin-bottom: 0;
}
}

也许你必须使用 margin-bottom: 0; !重要

关于html - header 上的未知样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48289092/

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