Node Class
Categories
Component ID
994002
Component name
Node Class
Component type
module
Maintenance status
Development status
Component security advisory coverage
covered
Downloads
28744
Component created
Component changed
Component body
Node Class is a simple module that allows users to add custom CSS classes to any node through the node/add interface.
For Drupal 6 only
Add the following PHP snippet to your node.tpl.php
<?php print node_class($node) ?>
So your new node.tpl.php
<div id="node-<?php print $node->nid; ?>" class="<?php print node_class($node) ?> node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
Tutorial: Node class (Video tutorial)
Related Module:
Node type class: This module adds class per content type.

