在 WP 中编辑索引文件
Edit Index File in WP
我有一个异常。所以,我正在尝试 edit\remove 我网站的 .site-header-main 中的背景。但是,我通过主题编辑器进行了编辑,因为代码在索引文件中,所以似乎没有采用。这是网站:https://retrocarsales.com/
主题 CSS 中的代码通过 style.cc and\or 主题编辑器更改后:
.site-header-main, .site-description, .site-title-text a {
background: none;
}
.site-header-main {
border-bottom: none;
}
检查时(索引)中的代码:258:
.site-header-main, .site-description, .site-title-text a {
background: #444444!important;
color: #ffffff!important;
}
.site-header-main {
border-bottom: 1px solid #444444!important;
}
注意:上面的代码在 Domain\WP-Content\Theme\index 或 Domain\index 中找不到,我只在 domain/wp-content/themes/theme-name/style.css 中找到相关代码,其中它很好但它没有在实时站点上执行...似乎该站点从索引中获取代码而不是 style.css
谢谢
如果您不是开发人员,您应该永远不要直接编辑主题文件 - 如果您犯了错误,这可能会破坏您的网站,甚至会使您的网站瘫痪。
相反,您可以安全地添加自定义 CSS,方法是转至 外观 > 自定义 > 其他 CSS(记得添加 "!important" 以覆盖当前 CSS 规则)。
详情请见下图:
我有一个异常。所以,我正在尝试 edit\remove 我网站的 .site-header-main 中的背景。但是,我通过主题编辑器进行了编辑,因为代码在索引文件中,所以似乎没有采用。这是网站:https://retrocarsales.com/
主题 CSS 中的代码通过 style.cc and\or 主题编辑器更改后:
.site-header-main, .site-description, .site-title-text a {
background: none;
}
.site-header-main {
border-bottom: none;
}
检查时(索引)中的代码:258:
.site-header-main, .site-description, .site-title-text a {
background: #444444!important;
color: #ffffff!important;
}
.site-header-main {
border-bottom: 1px solid #444444!important;
}
注意:上面的代码在 Domain\WP-Content\Theme\index 或 Domain\index 中找不到,我只在 domain/wp-content/themes/theme-name/style.css 中找到相关代码,其中它很好但它没有在实时站点上执行...似乎该站点从索引中获取代码而不是 style.css
谢谢
如果您不是开发人员,您应该永远不要直接编辑主题文件 - 如果您犯了错误,这可能会破坏您的网站,甚至会使您的网站瘫痪。
相反,您可以安全地添加自定义 CSS,方法是转至 外观 > 自定义 > 其他 CSS(记得添加 "!important" 以覆盖当前 CSS 规则)。
详情请见下图: