Skinr creates a variable containing your skins class that you need to print
inside your template files. Thankfully this will not be necessary in Drupal 7,
but for now you'll need to add the $skinr
variable and all the
template files you plan to use yourself.
The $skinr
variable should be printed in the class attribute of
the first, or outer-most <div>
in your theme's template
files. The variable is the same no matter which type you are dealing with, but
you may need to add template files to your theme. The variable is added by
doing:
<?php print $skinr; ?>
NOTE: Depending on how your template files are structured, you may need to add a blank space before the variable so it doesn't conflict with other classes you might have:
<?php print ' '. $skinr; ?>
Here is a list of template files that are typically used and supported by
Skinr. See the link for each if you need to create these from scratch in your
theme. These links point to Drupal's default code for the template files.
You'll be able to copy/paste that code or tpl file to your theme. Then you can
add the $skinr
variable and modify the code to suit your needs.
Note: If you have other template files, i.e. node-blog.tpl.php make sure you print the $skinr
variable in them, otherwise it wont work.