• Resolved gunnarzw

    (@gunnarzw)


    Hi,
    I’m currently working on the site https://client.gunnarzwart.nl
    It contains a private section but the homepage is visible for everyone. The picture which shows my logo and the name of the site is really unsharp. I’ve uploaded in high quality and made it bigger in CSS. But now it gets cropped every time. How can I fix this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    In your Child Theme functions.php file, add this:

    
    function add_stuff_to_theme() {
    
    	add_theme_support( 'custom-logo', array(
    		'height'      => 200,
    		'width'       => 800,
    		'flex-height' => true
    	) );
    }
    
    add_action( 'after_setup_theme', 'add_stuff_to_theme', 11 );
    
    • This reply was modified 7 years, 9 months ago by Andrew Nevins.
    Thread Starter gunnarzw

    (@gunnarzw)

    Thank you so much! That did the job!

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