WordPress › Support » How to change the background color of one page in twenty twelve
check the source: ctrl+u
find:
The identifier is right there:
Add something like this to your CSS file (in your child theme of course):
check the source: ctrl+u
find:
<body class="home page page-id-4 page-template-default custom-background single-author singular two-column left-sidebar">
The identifier is right there:
page-id-4
Add something like this to your CSS file (in your child theme of course):
body.page-id-4 {
background-color: #FF0000 !important;
}
go to your theme and edit from the CSS or the visual editor stylesheet file: editor-style.css
good luck!
lft
No comments:
Post a Comment