How I can insert a logo using Hemingway Rewritten theme?

  • Unknown's avatar

    I want to insert a logo in to the heater instead just text. Please help me out with instructions
    Thank you

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

  • Unknown's avatar

    Hi there!

    You can add a logo into your header if you edit CSS. So, please go to Appearance > Customize > CSS in your Dashboard.

    There are two options that you can try. This first option will allow you to keep the Site Title and just add a logo image above it:

    .site-branding {
    	padding-top: 170px;
    }
    
    .site-title a {
    	background: url(ADD IMAGE URL) top center no-repeat;
    	padding-top: 145px;
    }

    In between the parentheses where is says ADD IMAGE URL, please add the url of your image. Make sure the extension is an image file – e.g. .jpeg or .png. Then change the px number to match the size of your image.

    If you want to completely replace the Site Title with a logo image instead, try this:

    .site-title {
    	background: url(ADD IMAGE URL) center center no-repeat;
    	width: 400px;
    	height: 145px;
    	display: block;
    }
    .site-title a {
    	display: none;
    }

    Again, please replace the ADD IMAGE URL with your image link and change the px number to match the size of your image.

    Let me know if you have any questions with this!

  • The topic ‘How I can insert a logo using Hemingway Rewritten theme?’ is closed to new replies.