• I’m having trouble with my logo being too small. I’ve tried adding different CSS code that I found in other forums and nothing is working. I took off the logo for now, and just have the site name and tagline showing. Would really appreciate any help in what I can do to increase my logo size! Thank you!

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello There!

    Hope you are doing good!

    By default, the theme will crop your logo in 220×70 dimension to make the design proper, if it does not fit in your case you have to make little change in the code provided below:

    Open theme functions.php file

    Search for the code

    add_theme_support( 'custom-logo', array(
             'height'  	=> 70,
               'width'  	=> 220,
        ) );

    And replace it with the below code

    add_theme_support( 'custom-logo', array(
        'height'  	=> 70,
        'width'   	=> 220,
        'flex-height' => true,
        'flex-width'  => true,
    ) );

    It will allow you to upload the site logo without cropping.

    Hope this helps!

    Regards.

    Thread Starter electricmommy

    (@electricmommy)

    Thank you for your help! Is there any way to do this without editing the theme file? I’m not familiar with doing that yet and haven’t made a child theme. Is there by any chance any CSS code I can add to the additional CSS section that would work?

    Hello There!

    Hope you are doing good!

    It is not possible without modifying PHP code as it will allow you to skip cropping of the logo.

    Hope this helps!

    Have a nice weekend ahead!

    Regards.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Logo too small’ is closed to new replies.