更改Squarespace上一页的背景

时间:2019-06-29 19:23:08

标签: css squarespace

我正在尝试更改网站博客页面的背景。当前的网站都是黑色背景,但是我希望Blog页面为白色,黑色文本。我需要拥有自己的CSS,因为Squarespace不支持将此作为自定义设置。

我已经尝试过为此类事情提供的代码,但是没有任何效果。例如:https://answers.squarespace.com/questions/14800/how-can-i-change-the-content-background-color-on-only-one-page-using-css.html

#main {background-color:#ffffff; }  

我想改变背景颜色。

1 个答案:

答案 0 :(得分:0)

您可以通过busqueda = requests.get('https://autos.mercadolibre.com.ar/vento/_DisplayType_LF') auto_cont = BeautifulSoup(busqueda.content) auto_cont.find_all('a',{'class':'item__info-title'}, href = True) 元素上特定于博客的收藏ID(Squarespace为您添加一个类)来定位博客。从那里,我们必须将body作为其直接子对象div

通过CSS编辑器插入以下CSS:

.overflow-wrapper

由于文本为白色,因此将显示为不可见。您应该能够使用样式编辑器调整标题和其他元信息(作者,日期,标签,类别等)。

但是,我不认为样式编辑器会为您提供一个与网站其余部分分开更改博客正文(.collection-5d0a3c81de1f2b00012ccccc .overflow-wrapper { background-color: white; } 元素)的选项。因此,您可能还会发现以下CSS有助于将博客页面上的正文更改为黑色:

p

此外,您可能需要添加一些CSS来解决标头,由于设置了白色背景,因此无法读取标头。

.collection-5d0a3c81de1f2b00012ccccc p {
  color: black;
}

最后,页面标题也应设置为黑色:

.collection-5d0a3c81de1f2b00012ccccc.site-spacing-small .site-header, .site-spacing-small .site-page, .site-spacing-small .site-footer {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 3vw;
  padding-bottom: 3vw;
}

.collection-5d0a3c81de1f2b00012ccccc #header {
  background-color: black;
}