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?

While browsing submenu, the parent menuitem change
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: While browsing submenu, the parent menuitem change
#21720
Re:While browsing submenu, the parent menuitem change 12 Years, 7 Months ago Karma: 748
Remove the previous CSS rule and use the next one:

Code:


.ux-menu A.ux-menu-link-hover
{
 -o-border-radius: 7px 7px 0 0;
 -moz-border-radius: 7px 7px 0 0;
 -o-border-radius: 7px 7px 0 0;
 -ms-border-radius: 7px 7px 0 0;
 border-radius: 7px 7px 0 0;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#21743
Re:While browsing submenu, the parent menuitem change 12 Years, 7 Months ago Karma: 0
Thank you. This was excatly what I was searching for. Here is picture of a dog for you.

The administrator has disabled public write access.
 
#21745
Re:While browsing submenu, the parent menuitem change 12 Years, 7 Months ago Karma: 0
...didn't think about menus, which don't have submenus. Now, menu without submenu, when mouse is hovered over, two bottom corners of the menubutton change to rectangular. All the corners of the menuitem should be rounded when hovered over, if there is no submenu. However, if there is a submenu, two corners should be rounded.

Is this possible to create?
The administrator has disabled public write access.
 
#21761
Re:While browsing submenu, the parent menuitem change 12 Years, 7 Months ago Karma: 748
Use the next CSS rules:

Code:


.ux-menu LI a:hover
{
 color: white !important;
 background: #99cc33 !important;
}

.ux-menu LI a.ux-menu-link-parent:hover
{
 -moz-border-radius-bottomleft: 0 !important;
 border-bottom-left-radius: 0 !important;
 -webkit-border-bottom-left-radius: 0 !important;
 -moz-border-radius-bottomright: 0 !important;
 border-bottom-right-radius: 0 !important;
 -webkit-border-bottom-right-radius: 0 !important;
}



instead of the following CSS rule:

Code:


.ux-menu LI a:hover
{
 color: white !important;
 background: #99cc33 !important;
 -moz-border-radius-bottomleft: 0 !important;
 border-bottom-left-radius: 0 !important;
 -webkit-border-bottom-left-radius: 0 !important;
 -moz-border-radius-bottomright: 0 !important;
 border-bottom-right-radius: 0 !important;
 -webkit-border-bottom-right-radius: 0 !important;
}



PS: Thank you for the dog

Regards,
ARI Soft
The administrator has disabled public write access.
 
#21796
Re:While browsing submenu, the parent menuitem change 12 Years, 7 Months ago Karma: 0


Thank you for the help! You are A-W-E-S-O-M-E, you fixed my website!

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