About a:active
-
Your active menu is light blue and when you hover any menu (active and inactive) it shows a dark blue hover color. So what else do you want for the menu? I don’t quite understand.
You want a separate hover color for the active menu and one for the inactive menus?
Mod
Quote:If the menu item is active, I want another action, than if not active, when a:hover. But it seems like a:active don’t work in the css.I think you are confusing
a:hoveranda:active, which are pseudoclasses built into CSS, witha.current, which is a CSS class that you can define.:hoverand:activeare dependent upon mouse actions.:hovercomes into play when you hover your pointer over something with that pseudoclass;:activecomes into play in the time between when you click on an item and when you release the mouse button..currentis a user-defined CSS class that is usually applied to the page link on the page you are actually on. In the case of Graphene, the actual css class for the top menu is.current-menu-item.Hope this helps.
You are right, now I know, I didn’t understand a:active – thanks for the good explanation!
And it works perfect with
.current-menu-itemthanks again.If somebody could use this one day, the final code looks like:
#header-menu > li.current-menu-item a:hover {
background-color: #4476dd !important;
height: 13px;
}
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
