thank for your help!
unfortunately, it did not solve the problem.
the code below is what I have written in my child theme’s functions.php file. Is that correct?
<?php
/**
* This is where you can copy and paste your functions !
*/
// Workaround for those affected by the IE logo non-display bug
add_filter( 'tc_logo_img_display', 'replace_erroneous_width_and_height');
function replace_erroneous_width_and_height($html) {
$width_of_logo_in_px = '90'; // <<<<<<<<<<<< CHANGE TO YOUR LOGO'S WIDTH
$height_of_logo_in_px = '90'; // <<<<<<<<<<< CHANGE TO YOUR LOGO'S HEIGHT
return str_replace('width="" height=""', 'width="'.$width_of_logo_in_px.'" height="'.$height_of_logo_in_px.'"', $html);
}
if the above is correct, do you have any idea what could then be causing the problem?