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?

basic colour codes
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: basic colour codes
#12784
basic colour codes 13 Years, 1 Month ago Karma: 0
i have found solutions for most of my issues on your forum but the simplest of all evades me..

would you be able to tell me what code to use to change the colours for the menu blocks in all their states

normal
hover
active

and also for the fonts in these states

thanks
The administrator has disabled public write access.
 
#12792
Re:basic colour codes 13 Years, 1 Month ago Karma: 748
Hello,

Read this post please.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#12796
Re:basic colour codes 13 Years, 1 Month ago Karma: 0
thanks, most helpful

this has allowed me to change the standard and hover colours

but how do i change the "currently selected" colour? for example whilst on the NEWS page the menu link to NEWS has a different colour to the others.

and the borders?
The administrator has disabled public write access.
 
#12797
Re:basic colour codes 13 Years, 1 Month ago Karma: 748
Use the next CSS rule for current menu item:

Code:


UL.ux-menu LI A.current
{
 background-color: green;
}



Use "border" CSS property for <A> elements that change border. HTML structure of the menu can be found here.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#13339
Re:basic colour codes 13 Years, 1 Month ago Karma: 0
thanks again, most helpful..

this last one changed the colour of the "currently selected" menu item when i hover over it with the mouse but what i meant was, how do i change the colour of the "currently selected" menu item when the mouse is not hovering over it, as in the active tab colour
The administrator has disabled public write access.
 
#13352
Re:basic colour codes 13 Years, 1 Month ago Karma: 748
CSS rule which changed current menu item you can find in previous post. CSS rule for hover menu items is the next:

Code:


.ux-menu LI A:hover,
.ux-menu LI A.ux-menu-link-hover
{
 background: red none;
}



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