Casper theme - keep title in header on index page

Need help modifying the casper theme (I’m using header style “left aligned”). I want to keep the site title in the header (left of the other menu items). It already appears correctly on all paged except the index/home page where its hidden.

On desktop, the header on the index page looks like this (title missing):
TAGS ABOUT CONTACT

And every other page it looks like this:
JESSEWEB TAGS ABOUT CONTACT

On mobile, the header on the index page looks like this (title missing):
[SEARCH ICON] [HAMBURGER MENU]

And every other page it looks like this:
JESSEWEB [SEARCH ICON] [HAMBURGER MENU]

How can I make the title appear on the index/home page?
Thanks

You are trying to move Site Title to Nav menu both Desktop and mobile? And end to missing Site Title on home page index?

On /ghost/#/settings/design you just changed to Hidden option instead of Left Aligned which will make your Site Title on Left both desktop and mobile without modified theme.

Thanks - that worked but now my site description is missing. But that’s ok, I can probably add that back in index.hbs - thanks again.

1 Like

Add new this code block on index.hbs which will show your site description on Hidden otion

    <div class="site-header-inner inner">
        {{#if @site.description}}
            <p class="site-description">{{@site.description}}</p>
        {{/if}}
    </div>

That worked, thank you