Custom CSS for each page
Design and Skin Customization
What newly created pages?
If you add a template to your skin at /skins/(YOUR SKIN)/party.tpl
Then it will appear at
your-site.com/party
<script>$(function () { $('#cm{$item._item_id}').hover(function() { $('#bc{$item._item_id}').toggle(); }); });</script><script>$(function() { var bc = $('#bc{$item._item_id}'); $('#cm{$item._item_id}').hover(function() { bc.show(); }, function() { bc.hide(); } ); }); </script>
$(function () {
$('#p{$item._item_id}').hover(function () {
$('#m{$item._item_id}').fadeToggle('fast');
});
});
$(function() {
var mid = $('#m{$item._item_id}');
$('#p{$item._item_id}').hover(function() {
mid.fadeIn('fast');
}, function() {
mid.fadeOut('fast');
}
);
});