• Resolved tiphanai

    (@tiphanai)


    Total newbie over here. Trying to make my logo smaller. Tried to reduce the size of the image, didn’t change the size. Then I went into the themes->gutenshop-> functions.php file and changed this code:
    add_theme_support( ‘custom-logo’, array(
    ‘height’ => 250,
    ‘width’ => 250,
    ‘flex-width’ => true,
    ‘flex-height’ => true,
    ) );

    Changed the height and width to much smaller dimensions, but still no change in the logo size. Any suggestions?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Please avoid editing theme file, especially functions.php file, directly. It’s not a viable long term solution since it could get replaced when theme get updated.

    Reverse that file back to theme’s original and adjust the logo size using additional CSS.

    Try this code in Custom CSS section

    
    .custom-logo-link .custom-logo {
    	width: 200px;
    	padding-top: 20px;
    }
    
    Thread Starter tiphanai

    (@tiphanai)

    Thank you, this was very helpful! I have also created a child theme so any updates I make will not affect the entire. I have lots to learn!

    Theme Author Superb

    (@themeeverest)

    Thanks for helping him, I’m marking this as done ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing Logo Size’ is closed to new replies.