Title: 2 logos in header
Last modified: August 21, 2016

---

# 2 logos in header

 *  [crosswire](https://wordpress.org/support/users/crosswire/)
 * (@crosswire)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/2-logos-in-header/)
 * Right now, I have one logo on top left of the site. I want another smaller one
   for a company logo on the top right. Is there a way to do that. I know the social
   icons are currently moved to the right so not sure how to go about doing it.
 * thanks

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/2-logos-in-header/#post-5110885)
 * Link to site?
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/2-logos-in-header/#post-5110900)
 * Without the link, here is a starter.
 * You need a [Child Theme](http://www.themesandco.com/customizr/how-to-customize-customizr-wordpress-theme/)
   firstly.
 * Add this to your CT functions.php:
 *     ```
       add_action('__after_header', 'rdc_new_logo');
       function rdc_new_logo(){
           $html = '<div id="myLogo">';
           $html.= '<img class="alignright size-full" alt="YOURALT" src="/wp-content/uploads/YOURLOGO.jpg" width="150" height="150" />'; //CHANGE DETAILS
           $html.= '</div>';
           echo $html;
       }
       ```
   
 * This will create a new div after the header.
 * The rest needs to be added to your CT style.css.
 * To reposition using:
 *     ```
       #myLogo > img {
         position: relative;
         top: -130px; /* CHANGE TO SUIT */
       }
       ```
   
 * You’ll also need to shorten the Navbar Box:
 *     ```
       .navbar .navbar-inner {
         width:  80%; /* CHANGE TO SUIT */
       }
       ```
   
 *  Thread Starter [crosswire](https://wordpress.org/support/users/crosswire/)
 * (@crosswire)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/2-logos-in-header/#post-5110902)
 * hi sorry for the delay. the site is on my local server on my mac as I’m waiting
   for work to create a url. so I’m playing with the mock site on mamp pro. Thanks
   will try the above out. I have the child theme already .
 *  Thread Starter [crosswire](https://wordpress.org/support/users/crosswire/)
 * (@crosswire)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/2-logos-in-header/#post-5110951)
 * Thanks it worked. The only issue is when checking out the site on the ipad or
   mobile, the top right logo squishes below the left on and looks messy. Maybe 
   I will put the logo on the bottom footer.
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/2-logos-in-header/#post-5110952)
 * You could try adding @[media ](http://www.themesandco.com/snippet/media-queries-responsiveness/)
   and adjusting the logo size (use `width: xx%;`) at smaller viewports. Even consider`
   display:none;` on small phones.
 * Can you change status to [resolved] in rhs sidebar if you’re happy please.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘2 logos in header’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * Last activity: [11 years, 10 months ago](https://wordpress.org/support/topic/2-logos-in-header/#post-5110952)
 * Status: not resolved