• I’m kind of a newbie to wordpress and I was trying to start a site this first place I start was to put my logo on the 2011 theme.It was successfully uploaded but it way to big and it stretched the lenght of the page out.I was wondering if there is a plugin to resize logo because I dont want to go into the code

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter shon93

    (@shon93)

    this is the link to my site http://www.fatsanity.com/

    Good Guy

    (@mytaxsitecouk)

    If you are using the child theme then it is very easy to do without hacking the core!

    Step 1: create a logo of the correct size/dimensions so that it doesn’t get distorted when you resize it using CSS.

    2) Now in your style.css file enter this code or something similar to suit your image size:

    /*Header image and custom size */
    #branding img {
    	width: 1000px;
    	height: 130px;
    }

    3) Make sure the width is always 1000px because that is the default to fit within the page wrapper. Height can be anything to suit your design.

    Please do all this changes in your child theme so that you don’t mess around with the original theme.

    This works because I have done it here:
    http://mytechhelp.co.uk/

    Hope this helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to resize logo image’ is closed to new replies.