- This topic has 1 reply, 2 voices, and was last updated 5 years, 6 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Guru Theme Support › Header Image getting blurred
Tagged: Header image
I want to add a header image and I’m doing as instructed, which is …
While you can crop images to your liking after clicking Add new image, your theme recommends a header size of 300 × 60 pixels.
But the result is a blurred version of a very good quality image.
How can I have my header image look as good as the original image looks?
What’s the link to your site again?
Have you uploaded your logo to your media page yet? If so, do you have a link to that as well so I can take a look?
You can change the logo size in the functions file by looking for this code –
//* Add support for custom header
add_theme_support( 'custom-header', array(
'flex-height' => true,
'width' => 300,
'height' => 60,
'header-selector' => '.site-title a',
'header-text' => false,
) );
…and then changing it to match the exact size of the image you want to upload. The 300 x 60 is just a default size, you can still change this if you need to. Let me know if you have those links so I can see how the image is supposed to look.