我正在尝试个性化我的投资组合主页, 该主页受密码保护, 并已在Wordpress中以Salient主题(http://federicaaradelli.com/)构建。
我仅设法在密码表单中添加了一些边距和填充, 但是我无法更改页面背景颜色或添加背景图片。
这就是我在个性化CSS中编写的内容:
.post-password-form {
margin-top: 20%;
}
.post-password-form {
padding:10px;
background-color: white;
}
我还尝试检查页面/元素, 但并没有真正带我到任何地方。
有谁知道如何解决这个问题?
谢谢!费德里卡
#1
将此添加到你的CSS:
.container-wrap {
background-color: yellow !important; /* Generally, you don't need
to use "!important" in
your CSS, but currently
there is some overwriting
in your code and I use
"!important" as a quick
fix.
*/
background-image: url(https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png);
/* Optionally: */
background-repeat: no-repeat;
background-size: 100%; /* Sometimes it would be better to
use "cover" instead of "100%", but in your case "100%" is the
best option.
*/
}
评论前必须登录!
注册