Community Forums › Forums › Archived Forums › General Discussion › Insert Logo in Agency Header
- This topic has 11 replies, 7 voices, and was last updated 11 years, 12 months ago by Jen Baumann.
-
AuthorPosts
-
December 19, 2012 at 9:09 pm #6303HectorMember
This is driving me crazy. I'm wanting to put my logo in the header of the Agency theme. All the tutorials I've read and seen videos of show in the Genesis theme settings having a section named "Header Settings". Right underneath the Header Settings it says "Use for blog title/logo:" and then you have the choice of Dynamic Text or Imago Logo.
I don't have these header settings at all showing in the Genesis Theme Settings. From what I've seen on all these tutorials the Header Settings should be between the Default Layout and the Navigation Settings.
Can someone lead me in the right direction? I've just installed this today and wondering if the "Header Settings" are no longer listed in the Genesis Theme Settings.
December 20, 2012 at 7:50 am #6386Jen BaumannParticipantThe Agency Theme uses the custom header function located under Appearance > Header.
January 3, 2013 at 11:53 pm #9416anthonylevchenkoMemberI'm having the exact problem and I'm going insane.
It's not the header I'm trying to change, I want to upload my logo image instead of the text. I don't have any options for a logo image and I have none of the options the tutorials show.
In addition to this I cannot embed anything, from audio files to youtube videos, I've used other wordpress themes and this stuff is quite simple but it's just not happening with studiopress. Any help would be great, thanks.
January 9, 2013 at 12:03 pm #10721gregraymerMemberI'm having the same problem. I need to upload the image that's going in my header but can't find where to upload it. Can someone please advise?
January 9, 2013 at 6:25 pm #10838eddie1aMemberHi, I'm new here and also to WP, but maybe I can help out. Do you see the following confiuration form under the Appearance -> Header menu: http://screencast.com/t/iGiQ3OU3tWE ? It says there that the logo image has to be 960x115 pixels. So you can put your logo on a transparent or filled background of that size and upload it.
January 12, 2013 at 6:47 am #11426Jen BaumannParticipantEddie is correct, you can upload under Appearance > Header and you can put it on a transparent or filled background of 960x115.
Anthony, as far as embeds, those are handled by WordPress, not Genesis.
If you want to disable the custom header function, remove this line from functions.php:
/** Add support for custom header */ add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 115 ) );
This will restore an option under Genesis > Theme Settings for Dynamic Text or Image Logo. But, you have to add some css to make that happen. So in your style.css file, you'll need to add (at minimum) the following:
.header-image #title-area { background: url(images/logo.png) no-repeat center top; background-size: contain; }
Then around line 1654, change the css to include .header-image #title-area here:
body, .archive-page, .content-sidebar #content, .content-sidebar-sidebar #content, .footer-widgets-1, .footer-widgets-2, .footer-widgets-3, .full-width-content #content, .header-image #title-area, .home-left, .home-middle, .home-right, .sidebar, .sidebar-content #content, .sidebar-content-sidebar #content, .sidebar-sidebar-content #content, #content-sidebar-wrap, #footer .creds, #footer .gototop, #footer-widgets .wrap, #header .widget-area, #sidebar-alt, #title-area, #wrap { width: 100%; }
January 19, 2013 at 4:05 pm #13167algiskMemberI've changed the header dimensions in functions.php to 960 x 250:
/** Add support for custom header */
add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 250 ) );
but the appearance --> header choice still says 960 x 115 and crops to those dimensions. I also changed the css to the following:
.header-image #title-area,
.header-image #title,
.header-image #title a {
display: block;
float: left;
/*height: 115px;*/
height:250px;
overflow: hidden;
padding: 0;
text-indent: -9999px;
width: 200px;
}
Is there another place where the php has to be changed also?Thanks!
January 20, 2013 at 8:09 am #13269Jen BaumannParticipantYou'll also need to change this:
#header { margin: 0 auto; min-height: 115px; overflow: hidden; text-shadow: 1px 1px #000000; width: 100%; }
January 22, 2013 at 10:18 am #13718tavismeParticipantI am having the same problem. I would like to add a logo to the header left. The right of the header has a menu. The demo site shows a title in this area, I would like to replace it with a logo. I have watched a few other instructional demos that shows how they simply uploaded an image in the HEADER; however, when I try to do this, the image does not fit correctly. What size logo image do I need? What else am I doing wrong. I am not looking to replace the entire header. Thanks
January 22, 2013 at 10:22 am #13722Jen BaumannParticipantThe default height and width are in this css:
.header-image #title-area, .header-image #title, .header-image #title a { display: block; float: left; height: 115px; overflow: hidden; padding: 0; text-indent: -9999px; width: 350px; }
January 22, 2013 at 12:20 pm #13755tavismeParticipantThanks for your reply.
I did see that, so I had tried to resize the logo and uploaded the image; however, it is populating the entire header rather than the left corner.
January 22, 2013 at 1:41 pm #13809Jen BaumannParticipantDid you do the steps above: http://www.studiopress.community/topic/insert-logo-in-agency-header/#post-11426. It's always helpful to see a url too.
-
AuthorPosts
- The topic ‘Insert Logo in Agency Header’ is closed to new replies.