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?

replace ux-menu suffix
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: replace ux-menu suffix
#12093
replace ux-menu suffix 13 Years, 2 Months ago Karma: 0
Hello.

In css styles parameter described option to replace menu suffix with some custom id.

I wrote there {$id="topmenu"}

But it doesn't work. I am not strong at programming. Would you explain what exactly, what I should write in there to replace ul-menu with something else? How it works?
The administrator has disabled public write access.
 
#12094
Re:replace ux-menu suffix 13 Years, 2 Months ago Karma: 748
Hello,

For example if you want to change background of menu items, you can use the following code in "CSS Styles" parameter:

Code:


UL#{$id} LI A
{
 background: none red;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#12095
Re:replace ux-menu suffix 13 Years, 2 Months ago Karma: 0
I want to change font color to white on top menu on this page.

bole.mpm.org.il/arimenu

I am using this code.

UL#{$id} LI A
{
color: #FFF;
}

with no effect
Last Edit: 2011/03/09 12:44 By ninJes.
The administrator has disabled public write access.
 
#12096
Re:replace ux-menu suffix 13 Years, 2 Months ago Karma: 748
Try the following:

Code:


UL#{$id} LI A
{
color: #FFF !important;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#12098
Re:replace ux-menu suffix 13 Years, 2 Months ago Karma: 0
It works but only with !imortant tag.

But this tag changes font color on submenu.

How can I apply one font color for menu and another to submenu.

I have two menus on same page. And for changing menu fontcolor I have to use !important tag. But my submenu and menu font color are different. And I can't use !important tag twice..
The administrator has disabled public write access.
 
#12100
Re:replace ux-menu suffix 13 Years, 2 Months ago Karma: 748
Use the following code:

Code:


UL#{$id} LI A
{
 color: #FFF !important;
}

UL#{$id} LI UL.ux-menu-sub A
{
 color: #FF0000 !important;
}



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