3

我想更改特定页面的 CSS,但无法获取该页面的 ID。我想知道当我没有特定页面的 ID 时如何更改特定页面的 CSS?这是我页面的 ID:forum=forum-framtidsjouren

如果我更改下面的代码,我也会更改其他页面......

.home #content, .single #content, .page #content 
{
background: none repeat scroll 0 0 transparent;
box-shadow: none;
width: 100% !important; // I want to change width to 100% !important
}
4

2 回答 2

4

在浏览器中打开检查器并导航到<body>标签,您将看到如下内容:

<body class="... postid-123 ...">
  or
<body class="... page-id-123 ...">

body_class()请参阅WordPress 中负责生成这些类的函数的文档:

http://codex.wordpress.org/Function_Reference/body_class

于 2013-09-12T13:15:02.310 回答
-2

您还可以使用插件来为某些特定页面加载特定的 css 文件。

例如这个:https ://wordpress.org/plugins/this-page-needs-files/

于 2015-03-09T16:02:00.847 回答