Viewing 6 reply threads
You must be logged in to reply to this topic.
Hi
I have inserted a custom menu as a widget in my left hand column but we have a few issues:
1. For the sub page links (child) we want to have a blue underline which I have added but it has also added a blue underline to one of the main parent links Blog? can we remove it?
2. is it possible to show in this menu by highlighted colour the current page you are on?
Hello,
1-Please add this code into your custom css box:
aside ul li#menu-item-523 {
border-bottom: none;
}
2-Add this code:
a:active {
background-color: #3f77c7;
color: white;
}
Change the styling to your wish.
Best regards!
Hello,
Please edit the second code to this:
li .current-menu-item a {
background-color: #3f77c7 !important;
color: white !important;
}
Edit css attributes to your wish.
Best regards!
thats great thanks – it works for the sub menu but not the primary top level menu items?
Hello,
Please edit the code to this:
aside .current_page_item a { color: #3f77c7 !important;}
aside .current_page_item ul li a { color: #565555 !important; }
Result screenshot.
Best regards!
You must be logged in to reply to this topic.