-
The header image on pages other than the home page is not displaying correctly.
Please upload the image again, file was too big previously. Also, share a link to this page.
http://www.spice-affair.com/about-us-2/
Attachments:
You must be logged in to view attached files.I see your site title / logo is baked into header image and site title is also empty. I’d rather suggest adding your logo with Customizer and Jetpack. If logo size is the issue, read this post and add this to your theme’s
functions.php
file:// Create a custom image size for Site Logo. add_image_size( 'mytheme-logo', 200, 200 ); // Declare theme support for Site Logo. add_theme_support( 'site-logo', array( 'size' => 'mytheme-logo', ) );
Change 200 x 200 to your logo dimensions. Switching to a custom image size for site logos can result in the full size being displayed in the Customizer preview. This is because the thumbnails for that custom size may not have been generated if it’s the first time the site is using that theme. To correct this, install the Regenerate Thumbnails plugin and run it after the theme switch. After it completes, assigning an image to the site logo will result in the proper size being displayed in the Customizer preview pane.
You must be logged in to reply to this topic.