Hi
I’m using this theme: http://wordpress.org/extend/themes/ships-ahoy
My site is http://www.eldertransitions.org/wordpress/
My issue is with the header. I’d like it to fill the entire header space. When you upload a header with this theme it crops it automatically to 884px (as shown on site). To try to fix this I cropped my own image at 902px and uploaded it into the themes/ships-ahoy/image directory on my site. I then just added
background:url(images/header.png);
in the #header section. Note that initially the default image that is sized to 884px was not listed anywhere in the css file. After being added the image I cropped at 902px won’t show…and I already edited my header section to accommodate that size. Suggestions?
Thank you very much
check functions.php of your theme, if there are any references to the header size.
at the moment, your background for #header
background:url(images/header.png);
is overwritten by the embedded style for #header:
#header {
background: url(http://www.eldertransitions.org/wordpress/wp-content/uploads/2010/11/cropped-watercolor-grunge-000022-metallic-gold-green1.jpg) no-repeat;
}
Yep there was a default header size in the functions.php file. Fixed it! Thank you very much! 🙂