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?

adjust height and width
(1 viewing) (1) Guest
Go to bottomPage: 1234
TOPIC: adjust height and width
#22397
Re:adjust height and width 12 Years, 7 Months ago Karma: 0
So i created something graphically that illustrates what i'd like to achieve. More space after the arrow to the next item, and more space between the letters of each word. the top row of the graphic shows how things are now, the bottom row a demo of how i'd like it to look if possible.
Last Edit: 2011/12/03 20:47 By khadley.
The administrator has disabled public write access.
 
#22401
Re:adjust height and width 12 Years, 7 Months ago Karma: 748
Use the next CSS rule:

Code:


.ux-menu A
{
 letter-spacing: 0.3em
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#22406
Re:adjust height and width 12 Years, 7 Months ago Karma: 0
close, very close... is there a way to get the spacing between the menu items wider? Totally appreciate the help and support on this, normally help on free extensions non existent!
The administrator has disabled public write access.
 
#22408
Re:adjust height and width 12 Years, 7 Months ago Karma: 748
Try to use the next CSS rules:

Code:


.ux-menu A.ux-menu-link-level-0.ux-menu-link-first
{
 padding-left: 10px;
}

.ux-menu A.ux-menu-link-level-0
{
 padding-left: 25px;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#22417
Re:adjust height and width 12 Years, 7 Months ago Karma: 0
wow, that's exactly how i was wanting it to look, thanks so much! one last thing, how can i get rid of the outline around the sub menus. I had another thread going and they said to put
.ux-menu A.ux-menu-link-level-0
{
border-style: none !important;
}
to get rid of the main tab outlines, now i just want to either have the sub menu line not there, or a different color
The administrator has disabled public write access.
 
#22426
Re:adjust height and width 12 Years, 7 Months ago Karma: 748
Add the following CSS rule:

Code:


.ux-menu-sub A
{
 border-left: none !important;
 border-right: none !important;
}

.ux-menu-sub A.ux-menu-link-first
{
 border-top: none !important;
}



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