Useful CSS, Jquery & HTML references
Posted by Michele in Code on 29. Sep, 2009 | 0 Comments
I am always finding tutorials or references, but by the time I want to use them I can’t ever seem to find them. I am starting this page so I can keep track of them, hopefully this way I will manage to find them again when I need them.
Smashing Magazine
50 useful new jquery techniques
45 new [...]
Insert body class name in Joomla
Posted by Michele in Code on 25. Mar, 2009 | 0 Comments
I recently had to add a class name per section into a body tag for a Joomla based website I have been working on. After quite a bit of google’ing I found this and it was super useful.
To use the menu alias as the class name
<?php
$menu = &JSite::getMenu();
$active = $menu->getActive();
?>
<body id=”<?php print $active->alias; ?>”>
Use the [...]


