Hi dbarnhart,
I can see the Menu added correctly, however for some reason your wp_footer() call is inside the footer element with ID #footer which has relative positioning.
If I remove the relative position of #footer then it makes the menu work, but the footer messed up (for some reason your whole footer uses all absolute elements?).
So, you have 2 options.
1. Restructure your theme so that wp_footer() is outside of any elements (as it should be).
2. Re-style your footer so that it doesn’t use relative/absolute elements.
Either of the above will make it work as expected.
Many thanks
Peter
Thank you. it works now. I moved wp_footer outside of any divs and is just above the </body> tag.
Hi dbarnhart,
That’s prefect. Glad it worked first time!
Many thanks
Peter