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?

Width of the second sub menu
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Width of the second sub menu
#7698
Width of the second sub menu 14 Years, 1 Month ago Karma: 0
Hi!
First of all thank you for the great tool!

I manage to fix the width of the menu, and the 1st sub-menu with the code:

.ux-menu-container .ux-menu a
{
width:81px;
}
#{$id} .ux-menu-sub A
{
width: 90px;
}


I would like to make exact width of the 2nd sub menu.

Can you please help me.
The administrator has disabled public write access.
 
#7699
Re:Width of the second sub menu 14 Years, 1 Month ago Karma: 760
Hello,

Provide link to page, please, where we can see the menu that we can help.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#7707
Re:Width of the second sub menu 14 Years, 1 Month ago Karma: 0
The administrator has disabled public write access.
 
#7708
Re:Width of the second sub menu 14 Years, 1 Month ago Karma: 760
Use the following CSS rule that define sub-menu width:

Code:


.ux-menu-container .ux-menu .ux-menu-sub LI 
{
  width: 180px !important;
}
.ux-menu-container .ux-menu .ux-menu-sub LI A
{
  width: 146px !important;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#7722
Re:Width of the second sub menu 14 Years, 1 Month ago Karma: 0
Thank you very much!!!
That was so quick!!

Actualy works!

Is it possible to keep the width of the 1st sub menu unchanged (as shown in the picture) ??

Can there be a rule:
the width must be long at least 80px, but if needed longer?

primoz
The administrator has disabled public write access.
 
#7736
Re:Width of the second sub menu 14 Years, 1 Month ago Karma: 760
Use the following CSS rule that specify width of the first sub-menu:

Code:


.ux-menu-container .ux-menu LI.ux-menu-item-parent-pos0 .ux-menu-sub LI 
{
  width: 125px !important;
}
.ux-menu-container .ux-menu LI.ux-menu-item-parent-pos0 .ux-menu-sub LI A
{
  width: 91px !important;
}



Regarding the second question, it's impossible.

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