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


Recent Events
  • 23/11/2024 Black Friday 2024

    BIG SALE, 30% discount for all our extensions. Use BF24 coupon code. Hurry up the discount is valid till 3 December.

  • 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.


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?

Change color of single menu item - submenus
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Change color of single menu item - submenus
#33917
Change color of single menu item - submenus 12 Years, 5 Months ago Karma: 0
I've been doing this to change signle menu items:


Code:

.ux-menu .ux-menu-item66>A
{
color: red !important;
}


How do I do the same for submenus?
The administrator has disabled public write access.
 
#33924
Re:Change color of single menu item - submenus 12 Years, 5 Months ago Karma: 763
Hello,

Try the following:

.ux-menu .ux-menu-item66 .ux-menu-sub A
{
color: red !important;
}

Regards,
ARI Soft
The administrator has disabled public write access.
 
#33978
Re:Change color of single menu item - submenus 12 Years, 5 Months ago Karma: 0
Thanks,

this worked

.ux-menu LI.ux-menu-item469>A
{
background: #ffffff !important;
}

.ux-menu LI.ux-menu-item469>A:hover
{
color: #000000 !important;
background: #99AFAF !important;
}


.ux-menu LI.ux-menu-item469 .ux-menu-sub A
{
background: #000000 !important;
}


.ux-menu LI.ux-menu-item469 .ux-menu-sub A:hover
{
color: #ffffff !important;
background: #333333 !important;
}
The administrator has disabled public write access.
 
Go to topPage: 1