LOGO image
-
I feel quite silly.. but I cannot find where to upload the logo image.. can you help me out?
-
The Site Logo option in Sketch is available by activating the Jetpack plugin. No need to feel silly, this dependence isn’t obvious unless you look in the theme’s readme file. We’re currently working on a better way to indicate the features that Jetpack brings to the theme, including the portfolio custom post type, which is available by activating Jetpack’s Custom Post Types module.
OK thanks. Now it makes sense.
thanks a lot!!
Awesome occupation too!!You’re very welcome!
Hi, I still need a little advice. I’d like the logo image to be bigger . I’ve tried the css modifications suggested in other threads but without success.
I’ve also read that the plugin uses the midsized image for the logo, how can I change that?
bottom line which is the easiest way to change the logo size, without messing up the mobile view?Could you provide a link to your site running Sketch so I can take a look?
Of course!
http://www.supermammatotherescue.comTry creating a child theme and adding this function to your child theme’s functions.php:
function sketch_child_featured() { add_image_size( 'sketch-featured', '500', '200' ); } add_action( 'after_setup_theme', 'sketch_child_featured', 11 );You can tweak the height and width as you like.
Making a child theme means your changes won’t be overwritten when you update the theme. If you’re new to child themes, you can explore these guides:
http://codex.wordpress.org/Child_Themes
http://op111.net/53/
I forgot to mention that after creating a child theme and adding the new function, you’ll need to re-upload your logo.
I was able to do it! Thanks!
Actually this is the complete code I used.function sketch_child_featured() { // Create a custom image size for Site Logo. add_image_size( 'sketch-featured', 500, 200 ); // Declare theme support for Site Logo. add_theme_support( 'site-logo', array( 'size' => 'sketch-featured', ) ); } add_action( 'after_setup_theme', 'sketch_child_featured', 11 );Glad you’re set!
You shouldn’t need to re-declare theme support for the Site Logo feature since it’s already in the parent, so those extra lines shouldn’t be necessary.
The topic ‘LOGO image’ is closed to new replies.
