Title: Resizing Logo
Last modified: August 21, 2016

---

# Resizing Logo

 *  [joshlferguson](https://wordpress.org/support/users/joshlferguson/)
 * (@joshlferguson)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/)
 * Hi, First off, I am extremely new to wordpress. So please bear with me. I followed
   this person’s advice trying to insert my logo. [http://wordpress.org/support/topic/theme-zenon-lite-image-to-replace-title?replies=7](http://wordpress.org/support/topic/theme-zenon-lite-image-to-replace-title?replies=7)
   It worked, But now I have a massive logo on my homepage. My question is, how 
   do I resize the image to it’s original size? I’m not sure why it showed up so
   big. The site is thisblog.us Any help is greatly appreciated.
 * [http://wordpress.org/themes/zenon-lite/](http://wordpress.org/themes/zenon-lite/)

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/resizing-logo/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/resizing-logo/page/2/?output_format=md)

 *  [Justin](https://wordpress.org/support/users/justinaboyd/)
 * (@justinaboyd)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018728)
 * Hey Josh,
    There are a couple of ways you can do this.
 * That theme’s CSS is setting the logo to a width 1000px. So the fastest way would
   be to open your image up in an image editor and make the width of the image 1000px
   without changing the actual size of the logo. In Photoshop you would do this 
   by changing the CANVAS size – just be sure to put the logo where you want it (
   i.e. centered, left-aligned, right-aligned, etc.)
 * That’s a work-around. The correct way to do it, though slightly complicated way(
   since you’re new to WP) would be to change the CSS. You basically want this:
   `.
   center{width: auto;}  Instead of this:  .center{width: 1000px;}  Before going
   into too much detail on how to do this let me know if this is something you would
   need help to do.
 *  [Justin](https://wordpress.org/support/users/justinaboyd/)
 * (@justinaboyd)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018730)
 * You also need to undo what the other thread recommended because it didn’t work
   for you and somewhere during the manipulation your site now has this: “> near
   the logo.
 *  Thread Starter [joshlferguson](https://wordpress.org/support/users/joshlferguson/)
 * (@joshlferguson)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018742)
 * Thanks so much for your help. I changed the .center{width: 1000px;}to auto and
   it made the image the correct size. It also shifted the content to the left. 
   I removed what the other thread said to do, but I still have the”> next to the
   text (where the logo used to be) Any idea where that would be coming from?
 *  [Justin](https://wordpress.org/support/users/justinaboyd/)
 * (@justinaboyd)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018745)
 * Hey Josh,
    Glad I could help.
 * I’m seeing this in your code:
    `<h1> "> THIS</h1>`
 * So you’ve got “> in your header.php file or in your site title in General Settings.
 *  Thread Starter [joshlferguson](https://wordpress.org/support/users/joshlferguson/)
 * (@joshlferguson)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018752)
 * I found it and took it out. Thank you. Now that I changed 1000px to auto it shifted
   the slider and content to the left side of the page. The logo is centered at 
   the top. How do I align the content back underneath the logo?
 *  [Justin](https://wordpress.org/support/users/justinaboyd/)
 * (@justinaboyd)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018763)
 * Hey Josh,
    These adjustments should not have caused that to happen. It looks 
   like a <div> was deleted by accident somewhere- some kind of wrapper most likely.
 * I would highly recommend backing up your site and re-installing the Theme (newest
   version). Then do just the changes from above.
 * If this can’t be done let me know, and I’ll see what I can do.
 *  Thread Starter [joshlferguson](https://wordpress.org/support/users/joshlferguson/)
 * (@joshlferguson)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018765)
 * Hey Justin, I looked into backing up my site and it seems way too intricate a
   process for me to handle (newb) If there is anyway you could look and see maybe
   what is causing the shift I would be in-debted man. If not no worries, I’ll make
   another post and see if someone would be willing to help out. Thanks for all 
   your help!
 *  [Justin](https://wordpress.org/support/users/justinaboyd/)
 * (@justinaboyd)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018766)
 * Hey Josh,
    It looks like you’re missing the `</div>` that goes with your `<div
   id="header">`.
 * In your header.php where you see this:
    `</div><!--HEADER END-->`
 * Try this:
    `</div></div><!--HEADER END-->`
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018767)
 * [@joshlferguson](https://wordpress.org/support/users/joshlferguson/) – you really
   should not be modifying any theme files – as all of your changes will be lost
   when the theme is updated. You should instead be making changes using a child
   theme – see:
 * [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 * So before you get too far into modifying the theme, I’d strongly suggest you 
   make a child theme – it’s really not a good situation to lose a lot of work when
   you update the theme.
 *  Thread Starter [joshlferguson](https://wordpress.org/support/users/joshlferguson/)
 * (@joshlferguson)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018769)
 * I tried it, but no luck.
 *  Thread Starter [joshlferguson](https://wordpress.org/support/users/joshlferguson/)
 * (@joshlferguson)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018775)
 * Wpyogi, Thanks! I will look into that.
 *  [Justin](https://wordpress.org/support/users/justinaboyd/)
 * (@justinaboyd)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018777)
 * Hey Josh,
 * Okay, so this is the CSS you need to get it to work:
    ` .center{ width: 1000px;
   margin: 0px auto; } #header h1 img{width:auto;}
 * However, if you change this on the Theme stylesheet, and if you update the Theme
   down the road, the changes will disappear.
 * If you set up a Child Theme, and just put a single CSS file in there (and import
   CSS from Parent Theme Zenon-Lite folder) with the code above, an update won’t
   change these settings (or any other future CSS changes made to the file).
 *  Thread Starter [joshlferguson](https://wordpress.org/support/users/joshlferguson/)
 * (@joshlferguson)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018932)
 * Justin, where would I place the #header h1 img{width:auto;}
 * Do I right click on the logo and inspect element then enter it in the bottom 
   right of the screen? Or do I change it from appearance>edit from my dashboard?
 *  Thread Starter [joshlferguson](https://wordpress.org/support/users/joshlferguson/)
 * (@joshlferguson)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018933)
 * If I purchase a premium theme will I be able to make changes and not have to 
   worry about the theme reverting back to it’s original look when it gets an update?
 *  [Justin](https://wordpress.org/support/users/justinaboyd/)
 * (@justinaboyd)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/resizing-logo/#post-4018936)
 * Hey Josh,
    The `.center` styling above is the theme’s original styling for that
   element and needs to be in the theme’s style.css file. You can change that under
   Appearance – Editor – stylesheet.css, but once it’s fixed you shouldn’t use this
   area to make adjustments to a Parent Theme, only a Child Theme. The code is this:`.
   center{ width:1000px; margin:0 auto;}` and is near the top after the comments
   and `body{}`.
 * The only way to make changes to a WP Theme and not have them revert back after
   an update is to create a Child Theme- regardless of whether it’s Premium or not.
 * For this reason, the `#header h1 img` styling (and any custom styling) should
   go in the stylesheet of a Child Theme ([http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme](http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)).
 * Do you have an FTP client? You’ll need to navigate to your WP installation folder
   and find the `themes` folder inside of the `wp-content` folder. Then create a
   folder called `zenon-lite-child`.
 * Inside this folder you’ll want to have a stylesheet.css with at least the following:
 *     ```
       /*
       Theme Name:     Zenon Lite Child
       Template:       zenon-lite
       */
   
       @import url("../zenon-lite/style.css");
   
       #header h1 img{width:auto;}
       ```
   
 * Once that’s done you can activate Zenon Lite Child from the Themes panel in your
   WP back-end and you should be good to go.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/resizing-logo/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/resizing-logo/page/2/?output_format=md)

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

 * ![](https://i0.wp.com/themes.svn.wordpress.org/zenon-lite/1.9/screenshot.png)
 * Zenon Lite
 * [Support Threads](https://wordpress.org/support/theme/zenon-lite/)
 * [Active Topics](https://wordpress.org/support/theme/zenon-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/zenon-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/zenon-lite/reviews/)

 * 17 replies
 * 3 participants
 * Last reply from: [Justin](https://wordpress.org/support/users/justinaboyd/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/resizing-logo/page/2/#post-4018948)
 * Status: not resolved