Home › Forums › WoodMart support forum › Set an explicit width and height on image elements to reduce layout shifts and i › Reply To: Set an explicit width and height on image elements to reduce layout shifts and i
June 1, 2021 at 11:24 am
#296901
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_filter( 'woodmart_megamenu_icon_attrs', function(){
return 'width="18" height="18"';
} );