Tagged: hamburger
I’ve added the following to quick CSS:
.header_color .av-hamburger-inner, .header_color .av-hamburger-inner::after, .header_color .av-hamburger-inner::before {
background-color: #22467f !important;
}
Recently updated the PHP version and had many issues with images. Had to re upload most of them to get them to appear. However, the hamburger menu is stubborn.
Hey Jody,
Thank you for the inquiry.
The issue occurs because of the following defer filter in the functions.php file — we disabled it temporarily.
/**
* Defer parsing of javascript.
*/
if (!(is_admin() )) {
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, '.js' ) ) return $url;
if ( strpos( $url, 'jquery.js' ) ) return $url;
// return "$url' defer ";
return "$url' defer onload='";
}
// add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
}
Best regards,
Ismael