• Resolved bettib

    (@bettib)


    Hey, fab that you created this plugin, I got sick of my blurred logo and you gave me hope. So everything went well, I uploaded the image, it is in the media library, but I get an error when im trying to use the image for the Site Identity. More concrete, cropping image is not possible, and I cannot continue. I saw some similar topics, but I have absolutely no clue about this coding, so I would need a step by step support – I really appreciate your help! Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Benbodhi

    (@benbodhi)

    Hi there,

    Thanks for your support.

    It really depends on your theme and hosting environment. But this thread has the details of the worst case I have come across in the past:
    https://www.ads-software.com/support/topic/customizer-wants-me-to-crop-image/

    The key is usually adding this to your functions.php file:

    add_action( 'after_setup_theme', 'bodhi_svg_theme_support', 11 );
    function bodhi_svg_theme_support() {
    
    	remove_theme_support( 'custom-logo' );
    
    	add_theme_support( 'custom-logo', array(
    		'flex-width'  => true,
    		'flex-height' => true,
    	) );
    
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Image crop error – for beginners’ is closed to new replies.