Skip to content

Instantly share code, notes, and snippets.

View ivan-dragovich's full-sized avatar
😱
github sucks

ivan-dragovich

😱
github sucks
View GitHub Profile
@betweenbrain
betweenbrain / gist:1650738
Created January 21, 2012 01:54
Add Joomla Menu Item ID as Body Class
In your template:
-------------------
<?php defined('_JEXEC') or die;
// Menu Item ID
$itemId = JRequest::getInt('Itemid', 0); ?>
<body class="<?php echo 'item-' . $itemId;?>">
...
</body>