Blog title on Icon

HI! How do I get the blog title to display under Icon?

Hello @Moonpup,

Thanks for asking. :slight_smile:

If you are looking to display Icon first followed by Title under the same, please add following CSS under X > Theme Options > CSS:

.entry-title {
    display: grid;
}

If that’s not what you are looking for, please elaborate the question.

Thanks.

Hi. I’m looking for the title of the blog roll page to display. I’ve attached two screen shots. One shows when I have the stack, “Integrity” selected. The second is when I have the stack, “Icon” activated - you’ll notice that the blog title is missing. The CSS you sent doesn’t seem to affect this. Please advise.

Also, I do not receive notifications when my topics are answered by Apex staff. Is there a setting I can change so that I will receive notifications?

Cheers,
Jackie

Hi There,

On Integrity, you should be able to enable Blog Header under X -> Theme Options -> Integrity -> Blog Options as follows.

With regard to notifications, please refer (https://theme.co/apex/forum/t/support-forum-notifcation/24805/2?u=mldarshana).

Hope that helps.

Right… I see that option under “Integrity,” but I’m using “Icon,” which does not have that option available. Please see my screenshots.

Hi there,

That’s right, you can only display blog title in Integrity and it’s not available in icon stack. There is no available option to display it on Icon stack’s blog, it’s intended that way.

It still achievable but through customization, example, you can add this code to your child theme’s functions.php

add_action ('x_after_masthead_end', 'icon_blog_landmark');

function icon_blog_landmark () { if( is_home() ) : ?>
<header class="x-header-landmark x-container max width">
    <h1 class="h-landmark"><span>The Blog MOON</span></h1>
    <p class="p-landmark-sub"><span>TEST TITLE DESCRIPTION</span></p>
  </header>
<?php endif; }

This customization is just to direct you to possible solution and you may enhance it, but we can’t provide support for custom code and it may not work in the future.

Thanks!

Thanks for the clarification.

Cheers,
Jackie