How to create fa-bars animated menu

You provided the code you found online but none of the code from your theme or header.php or wherever it is that your hamburger menu launcher exists… …so, I’ll do my best… It’s most likely in your header.php, before the navigation is called, that you’ll find a link of some sorts… <a id=”mobile-nav” href=”#”><i class=”fa … Read more

Shrink Header Image on Scroll

So there’s two things we need to look out for here. We have to first make sure we specify to jQuery/javascript what it is that we’re selecting. In this code you are targeting the HTML header element and then also targeting ‘site-logo’ but jQuery can’t find an element named ‘site-logo’. <script> jQuery(document).ready(function($) { $(window).scroll(function () … Read more

Change via CSS the color of social menu icons

You mentioned that you tried several ways but you didn’t provide information as to what they were. You’ll want to either add this code to your Custom CSS (customizer or Jetpack plugin): .jetpack-social-navigation .icon{ color:#000000; } With the little bit of information provided that’s the best I can offer – will happily edit and add … Read more