Results 1 to 4 of 4

Thread: Drop Down Taps: Rounded corners and icons possible?

  1. #1
    Join Date
    Aug 2007
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Drop Down Taps: Rounded corners and icons possible?

    1) Script Title: Drop Down Tabs

    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...roptabmenu.htm

    3) Describe problem:
    Is it possible to modify this script, in order to render drop down menus with rounded corners at the bottom? Also, I'd like to add some small icon graphics right next to the menu items. Is this possible somehow?

    Thanks,
    Tom

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

    Default

    For the rounded corner part, it's certainly possible in that there's nothing in the script that will hinder you from customizing the look of the drop down menus, which are simply DIVs on the page:

    Code:
    <!--1st drop down menu -->                                                   
    <div id="dropmenu1_b" class="dropmenudiv_b">
    <a href="http://www.dynamicdrive.com/style/csslibrary/category/C1/">Horizontal CSS Menus</a>
    <a href="http://www.dynamicdrive.com/style/csslibrary/category/C2/">Vertical CSS Menus</a>
    <a href="http://www.dynamicdrive.com/style/csslibrary/category/C4/">Image CSS</a>
    <a href="http://www.dynamicdrive.com/style/csslibrary/category/C6/">Form CSS</a>
    <a href="http://www.dynamicdrive.com/style/csslibrary/category/C5/">DIVs and containers</a>
    <a href="http://www.dynamicdrive.com/style/csslibrary/category/C7/">Links and Buttons</a>
    <a href="http://www.dynamicdrive.com/style/csslibrary/category/C8/">Other</a>
    </div>
    How you go about doing this though is beyond the scope of this script. You may want to do a search on Google for rounded corner divs, and go from there.

    Regarding adding a small icon graphic, if you mean within the menu links of the drop down menus (like above), that's possible as well.

  3. #3
    Join Date
    Aug 2007
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for the good news. Gonna give it a try.

    One other thing: Is it possible to add another submenu to one of the menu divs?

  4. #4
    Join Date
    Aug 2007
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by ddadmin View Post
    Regarding adding a small icon graphic, if you mean within the menu links of the drop down menus (like above), that's possible as well.
    Ok, let's say I'm using the following lines of code to call up a submenu:

    <ul>
    <li><a href="url">Support Home</a></li>
    <li><a href="url">Customer Service</a></li>
    <li><a href="url">Knowledge Base</a></li>
    <li><a href="url">Books</a></li>
    <li><a href="url">Training and Certification</a></li>
    <li><a href="url">Support Programs</a></li>
    <li><a href="url">Forums</a></li>
    </ul></li>

    How would I actually insert a small gif graphic into the same line (say to the right of "Books")?

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
  •