Is there a way to disable the highlight that shows what page you are currently on in the footer of the page? You can see an ugly white highlight in the footer of my webpage (http://arrisconsulting.com/assembly/. Is there a simple CSS fix for this?
Thanks for writing in! You can add this under Custom > CSS in the Customizer.
.widget_nav_menu .current-menu-item>a,
.widget_nav_menu ul li a:hover,
.widget_meta ul li a:hover,
.widget_pages ul li a:hover {
background-color: transparent;
color: #000;
text-shadow: none;
}