• Resolved denisebaer

    (@denisebaer)


    Hello,

    It’s me again. I just noticed my blog titles aren’t appearing on the main page or the post itself.

    Thanks for your help.

    Denise

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Theme Author alexvtn

    (@alexvtn)

    Hello

    Could you please send me more details about this code?
    Do you want to hide the title only on the single post page?

    .page-title {
    display: none;
    }

    To display the title only on the blog pages, please add the following css code

    body.archive .page-title {
    display: block;
    }

    Thank you

    Alex

    Thread Starter denisebaer

    (@denisebaer)

    I don’t want the titles to show on any pages other than the blog posts. I removed the .page-title and put your css code. It adds the titles on all the pages, including the blog posts. When I keep both codes, the titles go away including the blog post titles.

    Thread Starter denisebaer

    (@denisebaer)

    I have used `.page-title {
    display: none;
    }

    body.archive .page-title {
    display: block;
    }`
    these codes to hide the titles from all pages, except my blog posts, but it’s still not working. I would really like to send out my post updates, but I can’t without a title.

    Theme Author alexvtn

    (@alexvtn)

    Hello

    please, after you css please paste the following code

    body.blog .page-title {
    display: block;
    }

    Please let me know

    Alex

    Thread Starter denisebaer

    (@denisebaer)

    Alex,

    I added it and it fixed it to the point where titles aren’t showing on the pages. They only show on the list of blog posts. The problem is once I click to read more of a particular post, the titles are not showing there.

    Denise

    Theme Author alexvtn

    (@alexvtn)

    Please add

    body.single .page-title {
    display: block;
    }

    When the title is hidden, you should check the css class added to the body HTML tag to update the css code

    Please let me know

    Alex

    Thread Starter denisebaer

    (@denisebaer)

    Alex,

    That did it!!!

    Thank you so much.
    Denise

    Theme Author alexvtn

    (@alexvtn)

    You’re welcome ??
    Cheers
    Alex

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Blog Titles not appearing’ is closed to new replies.