Change measures for the logo in the header of blog

  • Unknown's avatar

    Dear Sirs.

    I bought the Organization template to apply to my blog and I need to resize the logo to insert the image in the header because I prefer logo appears instead of a text.

    When I change the size of this element by changing the size in the command line the blog change directly and does not retain the changes I’ve chosen. The original size is 420×120 and I want to switch to 720×120

    <img src=”http://_________________________.png?w=420&h=120&crop=1″ alt=”_________________”>

    Thanks

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    What you’ll want to do is override the normal image added through Appearance > Header and replace it using CSS. Here is an example:

    #custom-header a img {
    	display: none;
    }
    
    #custom-header a {
    	background: url(http://clinicadentalabrilgarcia.files.wordpress.com/2013/09/propuesta-logo-web-111.png) no-repeat;
    	display: block;
    	width: 710px;
    	height: 120px;
    }

    Adjust the height value if you want to add a little more space.

  • The topic ‘Change measures for the logo in the header of blog’ is closed to new replies.