Hi Dave,
For the first link, this is a bit more difficult than I thought (and won’t use my plugin at all). But you can try adding the following CSS to the main styles.css file for the theme.
.blog .site-title a {
background: url(https://www.thehaikufoundation.org/test99/wp-content/uploads/2014/08/logo2.jpg) no-repeat !important;
}
You will want to replace the url above with the image you want to show. This should take care of https://www.thehaikufoundation.org/test99/blog/, but you may run into issues with the !important
. Make sure you add the above CSS to the end of the styles.css file. This will give you the best chance of this working.
For the second context you will want to enable the Header Raw Content box and add the following code:
<style>.site-title a {
background: url(https://www.thehaikufoundation.org/test99/wp-content/uploads/2014/08/logo2.jpg) no-repeat !important;
}</style>
Again replace the url with the image you want. Since this content is added after the main styles.css file, it should override the default header image.
Another thing you can try is adding this globally to all posts. To do this, add the following to the custom css box on the main Settings page of the plugin:
.single-post .site-title a {
background: url(https://www.thehaikufoundation.org/test99/wp-content/uploads/2014/08/logo2.jpg) no-repeat !important;
}
Again make sure you edit the url to the correct image.
Hopefully one of these will work for you. Please understand though that this CSS “hack” was not the intended use of this plugin, so I can’t make any promises.
Nick