Raindrops theme, there was a bug when a large image has been set.
functions.php line:570
if( $page_type_check == 'doc3' ) {
$max_width = raindrops_warehouse_clone( 'raindrops_fluid_max_width' );
$width = absint( raindrops_detect_header_image_size_clone( 'width' ) );
if( $width !== $max_width ) {
$orrection_amount = $width / $max_width;
return round( $height * $orrection_amount );
}
return $height;
}
Change from $width !== $max_width to $width < $max_width
if( $page_type_check == 'doc3' ) {
$max_width = raindrops_warehouse_clone( 'raindrops_fluid_max_width' );
$width = absint( raindrops_detect_header_image_size_clone( 'width' ) );
if( $width < $max_width ) {
$orrection_amount = $width / $max_width;
return round( $height * $orrection_amount );
}
return $height;
}
I think this change makes correctly work
Even after this change, if you need further adjustment, you can use the following filter.
add_filter( 'raindrops_header_image_width', 'revert_raindrops_header_image_width' );
add_filter( 'raindrops_header_image_height', 'revert_raindrops_header_image_height' );
function revert_raindrops_header_image_width( $return_value ) {
return 1280;
}
function revert_raindrops_header_image_height( $return_value ) {
return 573;
}
Appears my Child theme does not work with update.
Website looks broken.
broken means background issue ?
Affect setting in the background does not conduct…
causing app error of Facebook with my chrome
Please a little more, Could you clarify the problem
thank you for your patience