Have your tried by simply uploading a slimmer image? Often it works.
Yea it just stretches the image to 1060×326
Your header width and height are “hardcoded” into the html. This is what I’ve found:
img src="http://snailfactorydesigns.net/wp-content/uploads/2013/10/cropped-Logo.jpg" width="1060" height="326" alt="">
If you don’t have a theme option to change the header dimensions you must either add a CSS rule to your style.css or modify the php file that generates that code.
The easiest is to add a CSS rule but since this is an inline style I’m not totally sure it can work. Try it anyway
Provided you have already made a child theme, you must add the following code to your custom css:
#header a img {
height: NNpx !important;
}
replace NN with the desired height in pixels.
Let me know how it goes.
Here is my Stylesheet.css adding the custom to my simple custom css plugin failed. Any ideas
[That’s way too much code to post here]
Yes, just how I imagined, the CSS file doesn’t give any height and width for the header because they are already given in the html. If the custom.css doesn’t work the file you must modify is definitely header.php. Have you created a child theme? This is necessary, or any modification made will be deleted at the next theme update.
If you don’t know how to do it create an admin user and send me the credentials. I’ll do it for free of course. My address is [email redacted]
@daprela – please don’t ask for access to people’s sites – I’m sure you mean well, but it’s not a good idea on a very public forum – also, the forum guidelines ask that help be kept here:
http://codex.wordpress.org/Forum_Welcome#Helping_Out
Sorry WPyogi, I had good intentions as I’ve seen rtatham has some trouble in sorting out the problem. I’ll keep the conversation here then
How do you create a child theme
See: http://codex.wordpress.org/Child_Themes
You may also want to ask the developers of this theme for help – as these forums really only offer theme-specific help for themes on this site here:
http://wordpress.org/themes/
There are also a few plugins that do the work for you.
Check out this plugin
http://wordpress.org/plugins/child-themify/