如何在wordpress中更改特定页面的CSS?

时间:2013-09-12 11:23:54

标签: css wordpress

我想更改特定页面的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
}

2 个答案:

答案 0 :(得分:4)

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

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

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

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

答案 1 :(得分:-2)

您还可以使用一个插件,它允许您为某些特定页面加载特定的css文件。

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