I've been following along with the instructions on how to set up a subtheme for Genesis. I've now gotten to the section about setting up the layout. It says to add "id=genesis-1a" (for example) to the

Comments

Jeff Burnz’s picture

In the core theme there is a directory called "templates", copy the html.tpl.php file to your subtheme (which has no templates of its own by default). By copy/pasting this to your subtheme it will overrride the Genesis core version.

That file is where you make the change - on the body element you will see it like this:

<?php // modify the layout by changing the id, see layout.css ?>
<body id="genesis-1c" <?php print $attributes;?>>

Sorry you had to ask, its not clear at all from the old Drupal 6 docs, I need to get my act together and write some Drupal 7 documentation!

GarenCheckley’s picture

Just wanted to pop in and say I had the exact question less than 24 hrs after you, Hanscraft, so thanks for asking and thanks for the answer (not to mention the awesome theme).

Note that you'll want to clear the cashe (in D7 Configuration » Development » Performance) when adding or changing the location of the template files.