I'm preparing my wordpress website using Twenty Eleven child Theme and I need to set the Dark Color Skeme in some pages and the White Color Skeme in other pages.
I tryed including all the "dark.css" styles (i found this file in the parent theme) in my child style.css file adding a new class ".darkclass" to all styles. Then i added this conditional tag in the body of the header.php child file:
<body <?php if ( is_page(array( 18, 21, 34, 14, ))) {
echo ' class="darkclass" '; } ?>
<?php body_class(); ?>>
but it doesn't work properly:1) the body background colour doesn't change in the interested pages,
2) if i used a standard page structure in the interested pages it becomes a sidebar structure,
3) the text color in interested pages is a dark gray (not white).
Someone can help me?
(sorry for my bad english)