change position and size of the logo

  • Unknown's avatar

    Hey there,
    I am using the logo as an image. I would like to increase the size of the image and shifting it to the right bottom corner of the header (with some space to the fringe).
    It would be great if somebody could help me! THX in advance!

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

  • Unknown's avatar

    To increase the size of the header image and the logo, first find this in your custom CSS

    .custom-logo {
    	height:200px
    }

    and change it to this,

    .header .custom-logo-link img {
    	max-width: none;
    	height: 100%;
    	max-height: 200px;
    }

    and then add the following also to right align it and let me know what you think.

    .header-inner {
    	text-align: right
    }
    .header {
    	padding-top: 200px;
    	height: 500px
    }
  • The topic ‘change position and size of the logo’ is closed to new replies.