我在Squarespace中使用页面索引。对于该索引中的一个页面,我想将背景更改为图像。我正在尝试更改seacureadvisors上“关于我们”部分的背景。该索引的名称是SeacureAdvisors,我试图更新背景的页面名称是Seacure Advisors Button Section。
我尝试了以下CSS,但没有成功:
#seacureadvisors #seacure-button-section {
background-image: url(https://static1.squarespace.com/static/5fce63b9abf5bd69920abec0/t/5fd2163da9eaf43bd85bc941/1607603780287/who+we+are+bg.png);
background-repeat: no-repeat;
background-size: cover;
}
字符串
和/或
div#block-c509aa91e20e639c15e8 {
background-image: url(https://static1.squarespace.com/static/5fce63b9abf5bd69920abec0/t/5fd2163da9eaf43bd85bc941/1607603780287/who+we+are+bg.png);
background-repeat: no-repeat;
background-size: cover;
}
型
似乎都不起作用。请指示。
2条答案
按热度按时间yvt65v4c1#
以下是您正在寻找的
selector
:字符串
sgtfey8w2#
url()
css函数的参数需要一个字符串。要修复它,请将URL放入引号中,如下所示:字符串
此外,您的链接包含空格,这也将打破网址。