Home Forums Exoplanet Pro Increase size of site logo Reply To: Increase size of site logo

#1593
Andy
Keymaster

Hi, you would need to override the settings by adding this code in a child theme

function exoplanet_pro_child_theme_setup() {
	add_theme_support('custom-logo', array(
	'width' => '400',
	'height' => '150',
	) );
}
add_action( 'after_setup_theme', 'exoplanet_pro_child_theme_setup' );
  • Download the Exoplanet Child theme
  • Activate the child theme
  • Naviage to Appearance > Editor
  • Select theme to edit: Exoplanet Pro Child
  • Under ‘Templates’ select ‘Theme Functions (functions.php)’
  • Copy the above code into the functions.php file, making sure that you add the code below where it says ‘/* write custom functions below here */’