Menu drop down from image

Rodebloem / 2009-12-30 02:20:51   

Hello, my website is rodebloem.com and I am curious if you know of a way to drop down the menu from my logo. The logo is set in my pre nav text and im not sure how to go about doing that. I was also wondering about making it so that there is a hover feature on the logo to modify the image.

Last quick question is my menu when first opening the website only has the first two lists retracted and my INFO list is open. How can I change their default position?

Thanks! Indexhibit is a great invention. Appreciate it
-A

arsondpi / 2009-12-30 10:23:38   

I used the same code from this thread and as I write these lines I came up with this (you need to include the script in your index.php of your theme)...

  1. <script type="text/javascript">
  2. $(document).ready(
  3. function() {
  4.     $('#menu ul').hide();
  5.     $('#menu p:first-child').click(function() {
  6.     $('#menu ul').toggle(200);
  7.     return false;
  8.         });
  9. });
  10. </script>
  11. <style type='text/css'>#menu p:first-child {cursor: pointer;}</style>

Of course this affects the menu ul's and not the post-nav text... You may need to do some editing - add/delete/replace stuff....

Rodebloem / 2009-12-30 17:48:15   

Great it worked!
thanks

This thread has been closed, thank you.