I'm trying to create a different style format for a "newsletter" page from the other pages on my blog http://atxre.com
I found this posted topic and have been trying to implement it with no luck and I'm not sure what I'm doing wrong.
http://wordpress.org/support/topic/337389
I added
<body<?php if ( is_page(array('newsletter-1', 'newsletter-2', 'newsletter-3'))) {
echo ' class="myclass" '; } ?>>
</body>
to the header.php file
right after <body>
Then on my "newsletter" page I added at the top,
<body class="myclass">
Then on the style.css sheet I added
.myclass #content { background-color: #123456; }
.myclass #content p { color: #987654; }
After
body {
background: #FFFFFF url("images/top.gif") repeat-x;
color: #323232;
text-align:center;
font:11px/18px Verdana, Arial, Helvetica, sans-serif;
margin: 0px auto 0px;
padding: 0px;
}
which is my blog body format.
What am I doing wrong?