.jumbotron {
margin-bottom: 0px;
background-image: url(../img/desktop-urania.jpg);
min-height: 600px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
这是HTML中有效的CSS,但是我正在尝试将HTML转换为WordPress,同时转换时我在function.php中链接了样式表
(函数urania_script_enqueue(){
wp_enqueue_style('customstyle',get_template_directory_uri()。'/css/urania.css',array('$ handle','$ src','$ deps','$ ver','$ media'),'1.0。 0','all');)
但是图像未加载...
主题名称URANIA ::-> Css-> urania.css(样式表)
主题名称URANIA ::-> img-> desktop-urania.jpg(图片)
请帮忙
最佳答案
如果图像颜色模式为CMYK,请检查图像颜色模式,然后在IE-8上将不会显示,您需要将颜色模式更改为RGB。
如果您的图像颜色模式正确,那么最好共享实际的站点URL,以便我们可以正确地看到站点的结构。
关于php - 如何在样式表的Wordpress中链接背景图片?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39449256/