Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Is there any documentation??????
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Is there any documentation??????
*
#10547
Is there any documentation?????? 13 Years, 2 Months ago Karma: 0
Hey Folks!

I just downloaded ext menu and plan on using it for a vertical and horizontal menus. I was wondering if there is any documentation for this module. I am pretty much looking for the classes for css to style the menu the way I want it.

Thanks,

Chris
The administrator has disabled public write access.
 
#10557
Re:Is there any documentation?????? 13 Years, 2 Months ago Karma: 747
Hello,

Menu has the following structure:

Code:


<div class="ux-menu-container"> 
  <!-- UL elements contains additional CSS class ux-menu-horizontal for horizontal menu or ux-menu-vertical for vertical menu --> 
  <ul class="ux-menu">
     <li class="ux-menu-item-main">
        <a class="ux-menu-link-first"></a>
     </li>
     ...
     <li class="ux-menu-item-main">
        <a class="ux-menu-link-parent"></a>
        <ul class="ux-menu-sub">
          <li>
            <a class="ux-menu-link-first ux-menu-link-parent"></a>
            <ul class="ux-menu-sub">
              ... sub-menu items goes here ...
            </ul>
          </li>
          ...
          <li>
            <a></a>
          </li>
          ...
          <li>
            <a class="ux-menu-link-last"></a>
          </li>
        </ul>
     </li>
     ...
     <li class="ux-menu-item-main">
        <a></a>
     </li>
     ...
     <li class="ux-menu-item-main">
        <a class="ux-menu-link-last"></a>
     </li>
  </ul>
</div>



Hovered menu item has "ux-menu-link-hover" CSS class.

PS: If you use FireFox browser, you can investigate menu structure with help FireBug addon.

Regards,
ARI Soft
Last Edit: 2011/02/02 09:31 By admin.
The administrator has disabled public write access.
 
#10572
Re:Is there any documentation?????? 13 Years, 2 Months ago Karma: 0
Okay, Thanks for the information. I will try it with firebug.

Chris
The administrator has disabled public write access.
 
Go to topPage: 1