• Hello,

    I have inherited a site with Storefront and think it is a solid theme so, thanks.

    I have needed to change the branding imaage (Site Logo) but it forces a crop no matter what size I upload. I want to make it bigger but the image is always 110 px wide. I need it about 20% larger.

    thanks

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.