Results 1 to 4 of 4

Thread: DD Tab Menu II script question

  1. #1
    Join Date
    Nov 2004
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default DD Tab Menu II script question

    Hi

    I'm using the above script for my webpage, and it works great.

    However I would like to get second menu to appear above and not below the tabs.

    Anyone with any suggestions to how I can accomplish this?

    Rgds
    Pål Johansen

  2. #2
    Join Date
    Nov 2004
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Read the Sticky.

  3. #3
    Join Date
    Nov 2004
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I've been trying to work this as well but to no luck... unless the second group of tabs is controlling the first group of tabs.

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

    Default

    Please post in the correct format in the future per the Sticky.

    You can do this easily, simply by putting the second DIV block above the first DIV block of the script. So the result looks like:

    Code:
    <DIV id="tabcontentcontainer">
    
    <div id="sc1" class="tabcontent">
    Return to the <a href="http://www.dynamicdrive.com">frontpage</a> of Dynamic Drive.
    </div>
    
    <div id="sc2" class="tabcontent">
    See the new scripts recently added to Dynamic Drive. <a href="http://www.dynamicdrive.com/new.htm">Click here</a>.
    </div>
    
    <div id="sc3" class="tabcontent">
    A listing of scripts recently changed, plus description of the changes. <a href="http://www.dynamicdrive.com/revised.htm">Revised Section</a>.
    </div>
    
    <div id="sc4" class="tabcontent">
    Have a great script you wish to submit to Dynamic Drive for possible inclusion? <a href="http://www.dynamicdrive.com/submitscript.htm">Click here</a>.
    </div>
    
    </DIV>
    
    <div id="ddimagetabs">
    <a href="http://url/" onMouseover="expandcontent('sc1', this)">Home</a> <a href="http://url/" onMouseover="expandcontent('sc2', this)">New</a> <a href="http://url/" onMouseover="expandcontent('sc3', this)">Revised</a><a href="http://url/" onMouseover="expandcontent('sc4', this)">Submit</a>
    </div> <br style="clear:left" />

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
  •