如何复制 Squarespace 投资组合条目并保留背景图像?

How do I duplicate a Squarespace portfolio entry and retain the background image?

请帮助我。

在我的 Squarespace 网站上,我想复制投资组合条目并保留其设计设置。特别是背景图像。投资组合条目“2050/1”已使用代码正确设置。在投资组合画廊和页脚后面有一个艺术背景。当我在该条目的设置中单击“复制”时,它会创建一个新的投资组合条目,但它具有白色背景,请参阅“2050/1(副本)”。有没有一种方法可以复制页面和更多页面,而无需单独添加代码?请参阅附件中的链接。

https://www.regardsfromyourfuture.com/future-paintings/project-one-44zcm-57lgb-6glfy-p2f7c-nbdk9-76lc2-zh5z9

https://www.regardsfromyourfuture.com/future-paintings/project-one-44zcm-57lgb-6glfy-p2f7c-nbdk9-76lc2-zh5z9-3pcl8

谢谢!

通过 Custom CSS / CSS Editor 添加的以下 CSS 将实现这一点。

.collection-60b8480265d7df4bcf8f97ed .page-section:first-child .section-background:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  transform: scale(100%);
  background-image: url(https://images.squarespace-cdn.com/content/v1/601a2e3ab7c076212fdf7cc4/1627276381665-TKPRGQK0WMFOD4SMWKS0/Paintings_tall+test.jpg?format=2500w);
}
.collection-60b8480265d7df4bcf8f97ed .page-section:last-child .section-background:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: absolute;
  background-attachment: fixed;
  transform: scale(100%);
  background-image: url(https://images.squarespace-cdn.com/content/v1/601a2e3ab7c076212fdf7cc4/1627276381665-TKPRGQK0WMFOD4SMWKS0/Paintings_tall+test.jpg?format=2500w);
}

请注意,使用的 URL 是您作为背景图片上传到初始 post 部分的图片 URL。相反,您可以通过 "Manage Custom Files" option 上传图像,然后使用 URL 来代替该图像。