• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Insert Logo in Agency Header

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › General Discussion › Insert Logo in Agency Header

This topic is: resolved

Tagged: Agency, header, Logo

  • This topic has 11 replies, 7 voices, and was last updated 12 years, 3 months ago by Jen Baumann.
Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • December 19, 2012 at 9:09 pm #6303
    Hector
    Member

    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 #6386
    Jen Baumann
    Participant

    The Agency Theme uses the custom header function located under Appearance > Header.

    January 3, 2013 at 11:53 pm #9416
    anthonylevchenko
    Member

    I'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 #10721
    gregraymer
    Member

    I'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 #10838
    eddie1a
    Member

    Hi, 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 #11426
    Jen Baumann
    Participant

    Eddie 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 #13167
    algisk
    Member

    I'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 #13269
    Jen Baumann
    Participant

    You'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 #13718
    tavisme
    Participant

    I 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 #13722
    Jen Baumann
    Participant

    The 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 #13755
    tavisme
    Participant

    Thanks 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 #13809
    Jen Baumann
    Participant

    Did 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.

  • Author
    Posts
Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Insert Logo in Agency Header’ is closed to new replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble