• hi i was advised to put my slide down menu script:

    <script type="text/javascript">
        var $j = jQuery.noConflict();
    
        $j(document).ready(function() {
            var d=300;
            $j('#navigation a').each(function(){
                $j(this).stop().animate({
                    'marginTop':'-80px'
                },d+=150);
            });
    
            $j('#navigation > li').hover(
            function () {
                $j('a',$j(this)).stop().animate({
                    'marginTop':'-2px'
                },200);
            },
            function () {
                $j('a',$j(this)).stop().animate({
                    'marginTop':'-80px'
                },200);
            });
         });
    </script>

    into my footer.php in order to have the menu available on all my sites pages (zatheka.com) unfortunately the menu only appears on my home page and is no where to be seen on my post pages or any other pages. Any and all assistance greatly appreciated. cheers

  • The topic ‘menu only showing on front page’ is closed to new replies.