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?

Whitespace problem
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Whitespace problem
#12256
Whitespace problem 13 Years, 2 Months ago Karma: 0
Hello,

Could you help me remove the whitespace that appear at the background of the menu?

Thank you for the wonderful mod.

73as.onodot.com/
Last Edit: 2011/03/11 14:29 By monsterlucifer.
The administrator has disabled public write access.
 
#12257
Re:Whitespace problem 13 Years, 2 Months ago Karma: 0
Here's the link: 73as.onodot.com/

Secondly, I am newbie at this. Would appreciate if you guide me through the admin panel links to modify CSS if required.

Secondly, can I change the text color and background color of the menu to match my site's current template? Only let me know which code to modify, I'll do the hit and trial stuff.

Thanks!
The administrator has disabled public write access.
 
#12258
Re:Whitespace problem 13 Years, 2 Months ago Karma: 748
Hello,

Background is defined in your site template. You can use the next CSS rule that avoid it:

Code:


body DIV#leftcolumn DIV.module DIV DIV
{
 background-image: none;
}



Use the next CSS rules that change text color and menu background:

Code:


/* text color */
UL.ux-menu LI A
{
 color:green;
}

/* menu item background */
UL.ux-menu LI A
{
 background: red none;
}

/* selected menu item background */
UL.ux-menu LI A.current
{
 background: yellow none;
}

/* hover menu item background */
UL.ux-menu LI A:hover,
UL.ux-menu LI A.ux-menu-item-hover
{
 background: blue none;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#12261
Re:Whitespace problem 13 Years, 2 Months ago Karma: 0
Thank you so very much. Can I make it align centre or right of the default menu displayed above it?

73as.onodot.com/
The administrator has disabled public write access.
 
#12264
Re:Whitespace problem 13 Years, 2 Months ago Karma: 748
Use the next CSS rule:

Code:


#leftcolumn UL.ux-menu
{
 display: block;
 margin: 0 auto;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#12285
Re:Whitespace problem 13 Years, 2 Months ago Karma: 0
thank you so very much
The administrator has disabled public write access.
 
Go to topPage: 1