从移动设备访问网站时,WordPress自定义CSS不会更新



我正在使用Aspire Pro WordPress Theme。 我从定制器中添加了一些自定义 css,从台式机或笔记本电脑访问网站时 css 正在更新。我已经使用铬工具检查了移动设备的样式。它工作正常。

但是当我从移动自定义样式访问网站时,没有显示。 网站链接: https://williamlsnowden.com

这实际上是你的代码....您需要的自定义代码不在这里.... 我添加到****行中..... 尝试一下并清理缓存

<style type="text/css" id="wp-custom-css">
.site-header{
background-color: #247f34;
}
.site-header.light{
display: none;
background-color: #f16334;
}
.footer-widgets, .site-footer {
background-color: #000;
}
.front-page-1 {
height: 80vh;
}
.site-footer a:hover {
color: #000000;
}
.after-entry {
padding-left: 20px;
}
.front-page-2 {
height: 80%;
width: 90%;
margin-top: -50px;
}
.flexible-widgets .widget {
margin: 0;
}
.image-section {
padding: 1em;
}
@media only screen and (max-width: 760px){
*****************************************************************
***************************************************************
.front-page-1 { 
background-repeat: no-repeat !important; 
background-size: contain !important; 
background-position:center !important;
} 
***************************************************************
*****************************************************************
.front-page-2 .enews-widget     input {
width: 100%;
}
/*.front-page-1 {
background-image: url(//williamlsnowden.com/wp-content/uploads/2018/09/cover2-mobile.png);
}*/
}
</style>

相关内容

  • 没有找到相关文章

最新更新