Where do I find the controls for the divider pipes for the automatic sidebar menu items? Is there also a way to put a color behind the “You Are Here” highlighted menu item?
Thanks
Hi!
How would you like to style the dividers? Are you referring to breadcrumbs when you are saying “you are here”? What page are they active on?
Regards,
Rikard
Hi Rikard,
I would like the horizontal divider lines to be darker and perhaps add a background shade behind the active link for the sidebar menu area.
Hey!
.widget_nav_menu ul:first-child>.current-menu-item, .widget_nav_menu ul:first-child>.current_page_item, .widget_nav_menu ul:first-child>.current-menu-ancestor {
box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.9);
background: rgba(0, 0, 0, 0.1) !important
}
adjust box-shadow’s opacity (“0.9”) as needed to make the lines darker or brighter. Adjust background’s opacity (“0.1”) as needed.
Cheers!
Andy
Thanks!