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?

Each Top Level item in an other background colour?
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Each Top Level item in an other background colour?
#13581
Re: Each Top Level item in an other background colour? 13 Years, 2 Months ago Karma: 748
You can use the next CSS rules:

Code:


.ux-menu LI.ux-menu-item60 A:hover,
.ux-menu LI.ux-menu-item60 A.ux-menu-link-hover
{
 background: purple none;
}

.ux-menu LI.ux-menu-item62 A:hover,
.ux-menu LI.ux-menu-item62 A.ux-menu-link-hover
{
 background: blue none;
}

.ux-menu LI.ux-menu-item63 A:hover,
.ux-menu LI.ux-menu-item63 A.ux-menu-link-hover
{
 background: red none;
}



Change sample background color to appropriate colors or specify background images.

PS: Information about menu HTML layout and CSS classed can be found here.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#13596
Re: Each Top Level item in an other background colour? 13 Years, 2 Months ago Karma: 0
Thank you very, very much. It solve absolutely my problem. i can cry for luck. Perfect quick support and i can really warmly recommend you. Mario
The administrator has disabled public write access.
 
#13597
Re: Each Top Level item in an other background colour? 13 Years, 2 Months ago Karma: 0
can you give me the code if it is a background image?

now i have for example background: purple none;
but works background-image: url...../... also?
The administrator has disabled public write access.
 
#13598
Re: Each Top Level item in an other background colour? 13 Years, 2 Months ago Karma: 748
For example:

Code:


.ux-menu LI.ux-menu-item63 A:hover,
.ux-menu LI.ux-menu-item63 A.ux-menu-link-hover
{
 background-image: url(LINK_TO_BACKGROUND_IMAGE);
}



or

Code:


.ux-menu LI.ux-menu-item63 A:hover,
.ux-menu LI.ux-menu-item63 A.ux-menu-link-hover
{
 background: red url(LINK_TO_BACKGROUND_IMAGE);
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 12