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?

How set the same colors as the template's topmenu?
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: How set the same colors as the template's topmenu?
#19473
How set the same colors as the template's topmenu? 12 Years, 7 Months ago Karma: 0
I am very newbie about css and i need your help.

I installed the ARI YUI Menu for the top menu of joomla 1.7 but the colors and fonts are different from the template...
Please help me to set the same colors and fonts.

My site is at : ka8odon.com/tube/
The administrator has disabled public write access.
 
#19480
Re:How set the same colors as the template's topmenu? 12 Years, 7 Months ago Karma: 747
Hello,

This post contains information about menu HTML layout and CSS classes. It can be used to customize the menu. You can also use FireBug addon for FireFox browser to investigate menu styles.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#19510
Re:How set the same colors as the template's topmenu? 12 Years, 7 Months ago Karma: 0
I dont know css but i wrote this (at CSS Styles):
#nav .yuimenubar UL
{
background: url(templates/desertlab/images/separ.png);
}

but i cant change the default background color and font color...
Please help me about this.
The administrator has disabled public write access.
 
#19515
Re:How set the same colors as the template's topmenu? 12 Years, 7 Months ago Karma: 747
Use the next CSS rules:

Code:


#nav UL LI A
{
 color: #FAFAFA !important;
}

#nav UL LI.yuimenubaritem-selected,
#nav UL LI.yuimenuitem-selected
{
 background: none #B14E4E !important;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#19552
Re:How set the same colors as the template's topmenu? 12 Years, 7 Months ago Karma: 0
When i am at "Home" all works fine.
But when i press a menu item ("Sample Sites" or "Categories"):
1) the background become white and
2) the submenu dont appeared

See at ka8odon.com/tube/
How can i resolve this ?
The administrator has disabled public write access.
 
#19554
Re:How set the same colors as the template's topmenu? 12 Years, 7 Months ago Karma: 747
The problem with your custom CSS rules. Use the next one:

Code:


#nav .yuimenubar UL LI UL {
    background: url("/tube/templates/desertlab/images/separ.png") repeat scroll 0 0 transparent;
    width: auto;
}
#nav .yuimenubar UL {
    background: url("/tube/templates/desertlab/images/separ.png") repeat scroll 0 0 transparent;
}



instead of:

Code:


#nav .yuimenubar UL LI UL {
    background: url("templates/desertlab/images/separ.png") repeat scroll 0 0 transparent;
    width: auto;
}
#nav .yuimenubar UL {
    background: url("templates/desertlab/images/separ.png") repeat scroll 0 0 transparent;
}



PS: You CSS rules doesn't work due to SEF enabled.

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