Body classes in child theme

Thank you for all the insets with this question. Here is what I come up with working from 1fixdotio’s answer above. I first had to unset the full-width body class and then register a new body class to incorporate my new sidebar. Here is the code // Remove body class and register new body class … Read more

Add a header widget to the twentyfourteen theme?

Each theme has different “Widget areas”, so if the theme you are using doesn’t have the one you would like, there are unfortunately not so many options. Or at least, not without editing the template files. I found this plugin: https://wordpress.org/plugins/custom-widget-area/ which seem to do what you need, although it hasnt been updated in a … Read more

‘Dehighlighting’ navigation once clicked

You’re removing the current menu item, and current menu page, however your CSS refers to these: .site-navigation li .current_page_item > a, .site-navigation li .current_page_ancestor > a, .site-navigation li .current-menu-item > a, .site-navigation li .current-menu-ancestor > a .current_page_ancestor and .current-menu-ancestor are not handled by your javascript, but they are styled, hence your problem. You will need … Read more