Soulplayer
New Member
I am trying replicate something almost similar to the functionabily of the left vertical menu from this template: http://themes.rubenbristian.com/?theme=wowway&type=0My dev server is this: http://alamna.net/koala/ and this is the snippet that I use:\[code\]$(function() { $('#menu-left-wrapper').hover(function() { $(this).animate({ width: '125px' }, 600); }, function () { $(this).animate({ width: '35px' }, 500); }).trigger('mouseleave');});\[/code\]I know that this only slides in and out the vertical menu, I tried to add \[code\]$('#page-main-inner').animate({padding-right: '0px '},400);\[/code\] after line 3, but no effect.I didn't paste the HTML because it's too big, but you can inspect it using Firebug or something.