This php code goes before </head> section inside your template index.php:
<?php
defined('_JEXEC') or die; // Menu Item ID $itemId = JRequest::getInt('Itemid', 0);
?>
Modify <body> tag like this:
<body class="<?php echo 'item-' . $itemId;?>">
Then you can write custom css rules in your stylesheet:
.item-6{ background: #ff0000; } .item-7{ background: #BADA55; }


