Hi Ilinus,
put this code to your Child Theme style.css file
OR
Install Simple Custom CSS plugin and put the code there.
I’m doing this on my browser to find solution.
It can get to some different behavior on your site.
It can happen that it is not working.
Then we have to look further.
.sf-menu a:active, .sf-menu a:focus, .sf-menu a:hover {
background-color: red;
}
or
.sf-menu a:active, .sf-menu a:focus, .sf-menu a:hover {
background-color: red!important;
}
Hope Im helpful
Cheers
@tahoerock
Hi again,
I installed pinnacle theme on my server and that code up is not working.
Theme is not working with active page property/class
It is working with .current-menu-item class
SCREENSHOT
SOOOO:
put this code to your Child Theme style.css file
OR
Install Simple Custom CSS plugin and put the code there.
I’m doing this on my browser to find solution.
It can get to some different behavior on your site.
It can happen that it is not working.
Then we have to look further.
Here is what I got to work here
To change background:
.current-menu-item a {
background: red;
}
or
.current-menu-item a {
background: red!important;
}
To Change Typing:
.current-menu-item a span{
color: red;
}
or
.current-menu-item a span{
color: red!important;
}
Change red color to any you like.
Cheers
@tahoerock
-
This reply was modified 9 years, 7 months ago by
Tahoerock.
-
This reply was modified 9 years, 7 months ago by
Tahoerock.
Hi ilinus,
You can use this css:
li.current-menu-item.current_page_item {
background: #fff;
}
Just paste it into your custom css box in Theme Options > Custom CSS.
Hannah