wordpress背景图效果问题
发布网友
发布时间:2022-04-23 14:30
我来回答
共1个回答
热心网友
时间:2023-06-26 08:52
打开主题文件夹 themes找到当前启用的主题,用编辑器打开header.php文件,找到</head>在上面添加如下的代码,把图片地址替换你自己的地址。
<style type="text/css">
body{
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-color: rgba(0, 0, 0, 0);
background-image: url(图片地址);
}
</style>
如图所示。