Viewing 4 replies - 1 through 4 (of 4 total)
  • @hotmale

    Please provide a link to your site as it might be something that can be fixed via css

    Thread Starter martcol

    (@hotmale)

    Thank you for your interest @salsaturation

    The site is vintagebibe.co.uk

    I don’t think it’s a CSS fix I need TBH but have a go if you can.

    The problem is that the media upload forces a crop for the logo upload that is not optional.

    Cheers

    You are right… Add this to your child theme functions.php

    function marce_change_custom_logo_size() {
     	add_theme_support( 'custom-logo', array(
     		'height'      => 132,
     		'width'       => 132,
     		'flex-width' => true,
     	) );
     }
     add_action( 'after_setup_theme', 'marce_change_custom_logo_size', 30 );

    And then reupload the image

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Branding Image Crop’ is closed to new replies.