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?

Individual Menu Item Size and Hover Effect
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Individual Menu Item Size and Hover Effect
#16978
Individual Menu Item Size and Hover Effect 13 Years ago Karma: 0
First I just want to say thank you for such a great extension!

I just have two things that I would like to do to my menu:

1: The first is that I would like to change the size (height and width) of each individual menu item.

2: And the second is if it's possible to create a hovering effect such as an arrow underneath the menu item when hovered.

I've provided a screen shot of the hovering effect that I would like to achieve. Notice that there is a little arrow underneath the hovered menu item.

I did find the like to the HTML layout and the CSS style sheet, but I'm a neewbie and don't understand it at all.

Thanks in advance!!!
Last Edit: 2011/07/07 03:06 By android2050.
The administrator has disabled public write access.
 
#17006
Re:Individual Menu Item Size and Hover Effect 13 Years ago Karma: 748
Hello,

Description of menu HTML layout and CSS classes can be found here. We can also recommend to use FireBug addon for FireFox browser that play with styles in browser.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#17007
Re:Individual Menu Item Size and Hover Effect 13 Years ago Karma: 0
I don't understand all that coding. And I've already tried with firebug also but don't understand it. There's too much stuff there. Any additional help would be much appreciated.
The administrator has disabled public write access.
 
#17011
Re:Individual Menu Item Size and Hover Effect 13 Years ago Karma: 748
Use the next code that change menu item width and height:

Code:


.ux-menu LI.ux-menu-item[MENU_ITEM_ID]
{
 width: 250px !important; 
}

.ux-menu LI.ux-menu-item[MENU_ITEM_ID] A.ux-menu-link-level-0 
{
 height: 25px !important;
 line-height: 25px !important;
}



Where [MENU_ITEM_ID] is ID of menu item, it can be found in Joomla! menu manager. For example if you want to change width and height for menu item with ID equals to 37, use the next CSS rules:

Code:


.ux-menu LI.ux-menu-item[MENU_ITEM_ID]
{
 width: 37px !important; 
}

.ux-menu LI.ux-menu-item[MENU_ITEM_ID] A.ux-menu-link-level-0 
{
 height: 37px !important;
 line-height: 37px !important;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#17086
Re:Individual Menu Item Size and Hover Effect 12 Years, 12 Months ago Karma: 0
That did it! Thanks for the great support!! There's no way I would have gotten that from the style sheet link.
The administrator has disabled public write access.
 
Go to topPage: 1