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?

Styling top-level menu items - no link class
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Styling top-level menu items - no link class
#9484
Styling top-level menu items - no link class 13 Years, 6 Months ago Karma: 0
In my horizontal menu, I have two menu items in which the <a> tag is not given a specified class:

Code:


<li class="ux-menu-item-main ux-menu-item129 ux-menu-item-parent-pos6"><a href="/~wolfesne/index.php?option=com_content&amp;view=article&amp;id=85&amp;Itemid=129">Sponsors</a>
</li>
<li class="ux-menu-item-main ux-menu-item135 ux-menu-item-parent-pos7"><a href="/~wolfesne/index.php?option=com_content&amp;view=article&amp;id=96&amp;Itemid=135">Camping</a>

</li>



Because of this, I'm having trouble changing the color of the links, although this only seems to be a problem in Firefox. The links for "Sponsors" and "Camping" should be white -- not orange.

I've changed all color designations in the css file to white -- but without luck.

What rule do I need to add to make the links white (in all instances - link, hover, current and visited)?
The administrator has disabled public write access.
 
#9485
Re:Styling top-level menu items - no link class 13 Years, 6 Months ago Karma: 748
You can use the following CSS rules:

Code:


#nav A,
#nav A:visited,
#nav A:link,
#nav A:hover
{
 color: #FFF;
}



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