如何在Squarespace中使用CSS更改页面部分的背景?

kqlmhetl  于 2023-08-08  发布在  其他
关注(0)|答案(2)|浏览(142)

我在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;
}


似乎都不起作用。请指示。

yvt65v4c

yvt65v4c1#

以下是您正在寻找的selector

#seacure-button-section div.index-section-wrapper.page-content{
    background: url(https://static1.squarespace.com/static/5fce63b9abf5bd69920abec0/t/5fd2163da9eaf43bd85bc941/1607603780287/who+we+are+bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

字符串

sgtfey8w

sgtfey8w2#

url() css函数的参数需要一个字符串。要修复它,请将URL放入引号中,如下所示:

background-image: url("https://static1.squarespace.com/static/5fce63b9abf5bd69920abec0/t/5fd2163da9eaf43bd8   5bc941/1607603780287/who+we+are+bg.png");

字符串
此外,您的链接包含空格,这也将打破网址。

相关问题