我想编辑特定页面的链接属性,以便它们指向我在社交设置菜单中指定的其他位置,该菜单全局工作。因此,现在链接继承了它们的属性,并且在cms中没有办法为每个页面更改它。有没有办法在css中添加它?我不确定如何正确格式化。这是hmtl:
页面ID: body.page-id-85
HTML:
<div class="wrapper">
<div class="thb-social-home">
<a title="Facebook" href="https://www.facebook.com/">
<span class="thb-social-icon">2</span>
</a>
<a title="YouTube" href="http://www.youtube.com/">
<span class="thb-social-icon">5</span>
</a>
</div>
</div>
谢谢!
答案 0 :(得分:1)
您可以使用body.page-id-85
作为此页面的基本选择器:
#body.page-id-85 .wrapper {
/* wrapper specific rules*/
}
#body.page-id-85 .thb-social-home {
/* thb-social-home rules */
}