Title: Logo size
Last modified: August 22, 2016

---

# Logo size

 *  Resolved [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/)
 * Hi, congratularions and thanks for this beutiful theme!
    I have a problem with
   the logo.
 * I needed to change the size because the original logo is to small for my proyect,
   so I anulate this CSS lines:
 * site-title img{/*—-max-width:5em;max-height:1.5em—*/
    site-title img{/*—-max-
   width:8em;max-height:3em—-*/
 * Now it looks great, but the new problem I have is that the logo is not reduced
   proportionally to tablets and phones. In tablets looks good, but it keeps the
   size that I give it on phones and is showing integer. Not fit on the screen.
   
   I tried modify several lines of CSS but I cant make ir work. Could you help me
   with this?
 * You can see it in [http://www.pais404.com.ar/sitios/ercih](http://www.pais404.com.ar/sitios/ercih)
   
   Thanks!

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

 *  Thread Starter [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355324)
 * and one more cuestion..
    How can I change the socials icons by custom images 
   icons?
 *  Thread Starter [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355327)
 * Sorry, the url was wrong.
    [http://www.pais404.com.ar/sitios/erich ](http://www.pais404.com.ar/sitios/erich)
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355531)
 * Thanks for using Tracks!
 * The problem with editing the theme files is that you will lose these changes 
   when you update to a newer version of Tracks. What you can do instead, is override
   the existing CSS by adding your own to the “Custom CSS” section in the Customizer.
 * You have commented out some of the logo’s CSS. If you uncomment the CSS, the 
   logo will appear small again on mobile devices. Then you can allow the logo to
   be much larger on wider screens with the following CSS:
 *     ```
       @media all and (min-width: 800px) {
   
         .site-title .logo {
           max-width: 380px;
           max-height: 100px;
       }
       ```
   
 * That CSS can be copied & pasted into the “Custom CSS” section in the Customizer.
 * You can change those values to allow it to be bigger or smaller, and also change
   the “media query” to change when the logo should become larger if you’d like.
 * For the custom images for social icons, there’s currently not an easy way to 
   do this. It would take quite a bit of custom code, but I can point you in the
   right direction if you’d like.
 *  Thread Starter [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355534)
 * Thanks Ben! Voy a probar hacerlo de esta forma.
 *  Thread Starter [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355535)
 * Thanks Ben! I’ll try to do it this way.
 *  Thread Starter [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355537)
 * ben, it looks great now.
    Thanks!!
 *  Thread Starter [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355540)
 * I could manually resolve the issue of social icons.
 * **I set aside this line of code in the FOOTER**
 * <———– <? php
    // Add social icons if September if ((get_theme_mod (‘social_icons_display_setting’)
   == ‘header-footer’) || (get_theme_mod (‘social_icons_display_setting’) == ‘footer’)){
   ct_tracks_customizer_social_icons_output (); } ?> ———–>     
 * **and then add this: **
 *      <div>
             [          <img src = “<? php echo get_template_directory_uri();
   > / social / facebook.png” width = “45” height = “45” alt = “” title = “” /> 
      [          <img src = “<? php echo get_template_directory_uri ();> / social/
   twitter.png” width = “45” height = “45” alt = “” title = “” />                   [    
   <img src = “<? php echo get_template_directory_uri ();> / social / youtube.png”
   width = “45” height = “45” alt = “” title = “” /> </ div>
 * I dont know if its the best way, but it worked perfect.
    Thanks Ben!
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355563)
 * Excellent, nice work!
 * I would make one small change to your current solution. Instead of editing the`
   footer.php` file in the parent theme, you could copy the entire `footer.php` 
   file into the child theme and make your edits there.
 * This way, the child theme’s version will be loaded instead and won’t get overwritten
   if you update Tracks.
 *  Thread Starter [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355575)
 * perfect!
    thanks ben!
 *  [vijaylathiya](https://wordpress.org/support/users/vijaylathiya/)
 * (@vijaylathiya)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355576)
 * Hi Brunoarri
 * i believe that ben suggestion solved your problem. Do you still need help?
 * Regards,
    vijay Wp Developer
 *  Thread Starter [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * (@brunoarri)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355579)
 * Hi Vijay.
    the problem has been solved. thanks!

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

The topic ‘Logo size’ is closed to new replies.

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

 * 11 replies
 * 3 participants
 * Last reply from: [brunoarri](https://wordpress.org/support/users/brunoarri/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/logo-size-18/#post-5355579)
 * Status: resolved