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?

Vertical menu width problem .
(1 viewing) (1) Guest
Go to bottomPage: 123
TOPIC: Vertical menu width problem .
#7076
Vertical menu width problem . 14 Years, 2 Months ago Karma: 0
Hello. I have a problem with the main vertical menu. Items that do not have submenus take the width specified in the css file. However, those items have a submenu are always longer than item which don't have submenus. How do I determine the width of both items? Thank you.

www: wiw.kielce.pl/indexx.php

Ps. sorry for my english
The administrator has disabled public write access.
 
#7077
Re:Vertical menu width problem . 14 Years, 2 Months ago Karma: 760
Hello,

This problem with your site template styles and custom styles which you have added. Remove this style:

Code:


.ux-menu-container .ux-menu a
{
  width:161px;
}



and add the next CSS rule:

Code:


#left .moduletable {
 margin-right: 8px;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#7079
Re:Vertical menu width problem . 14 Years, 2 Months ago Karma: 0
Sorry, but it didn't work. When i removed this entries in css main menu width of both items was equal, but i want to fill all width my left green table by menu...Can you look at this now ?
The administrator has disabled public write access.
 
#7080
Re:Vertical menu width problem . 14 Years, 2 Months ago Karma: 760
Use the following CSS rules:

Code:


#left .moduletable {
 margin-right: 8px;
}

#left .ux-menu,
#left .ux-menu li
{
  width: 100% !important;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#7081
Re:Vertical menu width problem . 14 Years, 2 Months ago Karma: 0
Almost good But there is 1 problem more Width of submenu ... (almost to infinity:) How can i solve this problem ?
The administrator has disabled public write access.
 
#7085
Re:Vertical menu width problem . 14 Years, 2 Months ago Karma: 760
Try to use the following instead of the previous CSS rules:

Code:


 #left .moduletable {
 margin-right: 8px;
}

#left .ux-menu-sub
{
 position: absolute;
 width: auto !important;
}

#left .ux-menu-sub li
{
white-space: nowrap;
}

#left .ux-menu,
#left .ux-menu li
{
  width: 100% !important;
}



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