Results 1 to 3 of 3

Thread: little problem with DD Tab Menu II

  1. #1
    Join Date
    Jan 2009
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default little problem with DD Tab Menu II

    1) Script Title:
    DD Tab Menu II
    URL:
    http://www.dynamicdrive.com/dynamici...ddtabmenu2.htm

    Describe problem:
    Hi and a Happy new year!
    I am trying to use the "DD Tab Menu II" in "http://solaizco.startlogic.com/cocstreetstyle/", and my problem is that the first time I load the blog, I see the first level of the menu, and I also see, as a second level, the list of all the submenus I have defined. The true is that in firefox I see the list, and in iexplorer I see just the first line, but I know that the rest is there too... I have to move the mouse over all my first level of the menu, and then the menu begin to work properly.
    Any idea of what is going on...

    Thanks

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    The divs containing your sub menu contents should be initially set to display:none. You can do this for example by giving each DIV a CSS class:

    Code:
    <div id="tabcontentcontainer"> 
    <div id="navega_9" class="tabcontent">
                <ul class="navega_2">
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >Best ever</a></li>         
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >Best of the pas 7 days</a></li>
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >Best of the month</a></li>
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >Best of the year</a></li>      
              </u1>                  
            </div>
    
    <div id="navega_3" class="tabcontent">
                <ul class="navega_2">
                 <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >Spain</a></li>         
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >USA</a></li>
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >Australia</a></li>
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >Asia</a></li> 
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >Africa</a></li>
                  <li><a href="http://solaizco.startlogic.com/cocstreetstyle/" >South America</a></li>   
               </u1>
    
            </div>
    With the class defined within your CSS as:

    Code:
    .tabcontent{
    display:none;
    }
    DD Admin

  3. #3
    Join Date
    Jan 2009
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Thank you!!

    Thank you very much!!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •