示例模板: https://eamon-demo.squarespace.com/#overview-eamon
有没有办法在Ethan / Eamon主题中用文本更改单个白色部分的背景颜色?
我没有运气<style>
.body {
background-color: lightblue;
}
</style>
在页面编辑器的“高级”部分中。我希望只更改部分背景颜色中的一个,我不想全部更改它们。感谢。
解决方案! 我能够在一个名为&#34; titles&#34;将以下内容添加到CSS编辑器中:
section#titles {
background-color: lightblue !important;
}
答案 0 :(得分:0)
是的,可以通过CSS attribute selector进行定位。例如:
samplerExternalOES
上述代码将通过CSS Editor插入。 [data-url-id='titles-eamon'] .content, [data-url-id='titles-eamon'] .content-inner {
background-color: lightblue !important;
}
值对应索引页面部分的URL Slug(参见图像)。
您可以检查页面用户browser's developer tools的代码(通常按F12或CTRL + SHIFT + I)。这将有助于您浏览此页面的代码以及其他类似问题/自定义。