Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在主题选项中,它说为了在页眉和页脚中显示我的背景,我需要添加我自己的基本上忽略或优先考虑我的背景的 CSS(它已经显示在“内容部分”或中间网站)那里的默认模式。我有非常基本的编码技能。任何帮助表示赞赏。(注意:我不是想改变颜色,我想忽略默认图案背景,我希望我的背景显示在整个网站上) Nutivet.com
转到主题文件夹中的 style.css,在第 453 行,您将找到“品牌”的 css,这是您的标题的 id:
#branding{ background: url("images/header-bg.jpg"); .... }
将其更改为您的模式。或将其更改为无:
background: none;
页脚的 id 是 colophon。