Hi!
I had to slow down this project due to some other problems, but now thanks god I’m able to work on it again!
I followed the instructions on the link but didn’t obtained success.
I’m using the thematic template with a child theme. The thematic already came with the bodyclass line on the header.php file:
<?php
// Creating the doctype
thematic_create_doctype();
echo " ";
language_attributes();
echo ">\n";
// Creating the head profile
thematic_head_profile();
// Creating the doc title
thematic_doctitle();
// Creating the content type
thematic_create_contenttype();
// Creating the description
thematic_show_description();
// Creating the robots tags
thematic_show_robots();
// Creating the canonical URL
thematic_canonical_url();
// Loading the stylesheet
thematic_create_stylesheet();
// Creating the internal RSS links
thematic_show_rss();
// Creating the comments RSS links
thematic_show_commentsrss();
// Creating the pingback adress
thematic_show_pingback();
// Enables comment threading
thematic_show_commentreply();
// Calling WordPress' header action hook
wp_head();
?>
</head>
<?php
if (apply_filters('thematic_show_bodyclass',TRUE)) {
// Creating the body class
?>
<?php }
// action hook for placing content before opening #wrapper
thematic_before(); ?>
<body <?php if (function_exists('body_class')) body_class(); ?>>
<div id="wrapper" class="hfeed">
<?php
// action hook for placing content above the theme header
thematic_aboveheader();
?>
<div id="header">
<?php
// action hook creating the theme header
thematic_header();
?>
</div><!-- #header-->
<?php
// action hook for placing content below the theme header
thematic_belowheader();
?>
<div id="main">
I tried different ways to change the BG Color (Page template, page ids…). None worked.
On my css I created the following lines:
body.page-template-orange {
background-color:#FC9;
}
body, input, textarea {
font: 15px Georgia,serif;
line-height:22px;
background-color:#666;
}s
orange is the page-template I created to use this BG Color (#FC9). For all the other ones I want to keep the std color (#666).
The first question that I had was about how to use the page template class! If I had to put the page template name (the one I find on the back-end while creating a new page, the file name, the file name.php… I tried many ways and neither worked.
I’m really new to WordPress, so, sorry if it sounds a bit dumb, but so far I couldn’t make it work!
Thanks again for all the help,
Pedro!