A Couple Blog Questions

On my blog, I am hoping to change a few small things that I need some help with.

The menu on the blog is showing my logo as white and can’t be seen. I was curious if I could either change the color of the logo for the blog only or change the color of the entire menu to dark and then change the words to white so it can be seen.

I would like to remove the comments section of the blog, but I’m not certain how to do that.

http://theopendoor.church/740/

Hello Brock,

Thanks for writing in!

There is only one setting for the logo image. You can only insert one logo image. To have a different logo color in your blog page, you would need a custom JS script. Please create a logo image that is in black and upload it in your media folder, Media > Library. Take note of the image url for we will use it later in the code below. And then please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb)

(function($){
  $(".single-post .x-brand img").attr("src", "http://the-url-of-the-black-logo");
})(jQuery);

And to turn off the comment section, you will have to disable it in the page settings.

Hope this helps.

Great thanks! Now I’m curious how to shrink that logo so it fits normally on the page. As you can see, it’s too big.

http://theopendoor.church/740/

Hi Brock,

I don’t see a logo right now. Although the following CSS can be added on Theme Options > Global CSS to adjust logo size on that specific page:

.single-post .x-brand img {
    width: 187px; /*Adjust this value accordingly*/
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.