Viewing 1 replies (of 1 total)
  • Hi there,

    The simplest way to add the image to the upper left hand of your site (without editing your theme’s PHP files) is with some custom CSS.

    To add custom CSS, firstly set up a child theme or activate a custom CSS plugin. It’s worth noting that Jetpack has a built in custom CSS module.

    Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:

    #site-branding {
        background: url("URL_OF_IMAGE") no-repeat scroll;
        background-position: 15px 11px;
        background-size: auto 65%;
        padding-left: 80px;
    }

    Change URL_OF_IMAGE with the URL of your image and adjust the numbers for sizing and padding to your liking. If you give that a try and need any help, then just let me know. 🙂

Viewing 1 replies (of 1 total)

The topic ‘{Theme Harmonic}’ is closed to new replies.