Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #164278
    valeriewallace
    Participant

    Hello! I’m really loving this theme. But I can’t seem to figure out how to remove
    Blog
    From the blog

    on the blog page (named “installations”

    and I’d like to remove the post dates at the top of the entries.

    The site is https://chleeart.com/installations/

    I have tried in the custom CSS adding

    body:not(.blog) .custom-header {
    display:none;
    }
    but that did’t work.

    #164293
    sapana
    Participant

    @valeriewallace: Go to=> Appearance=>Customize=> Additional CSS=> add the following CSS code
    /*To remove the blog title*/

    .section-title {
        display: none;
    }

    /*To remove the post date*/

    .entry-meta {
        display: none;
    }

    Let me know if this works out!
    Kind Regards,
    Sapana

    #164361
    valeriewallace
    Participant

    That worked!!!

    Can you tell me how to remove “From the Blog”?

    ~Valerie

    #164376
    sapana
    Participant

    @valeriewallace:Go to=> Appearance=> Customize=> Additional CSS => add the following CSS code

    .taxonomy-description-wrapper.section-subtitle {
        display: none;
    }

    Let me know if this helps you out!

    Kind Regards,
    Sapana

    #164427
    valeriewallace
    Participant

    That worked, but the titles on the home page have disappeared. I will open a new support forum.

    #164430
    valeriewallace
    Participant

    I figured out the titles disappeared because of the CSS you gave me to remove the title “Blog” from the blog.

    .section-title {
    display: none;
    }

    I’ve taken that CSS off of the CSS customization, so now need a way to remove the title only from the blog (on my site it is the page “installations”.

    I put this response on another thread as well.

    Thanks!

    #164435
    valeriewallace
    Participant

    Alternatively, please tell me how to rename “Blog”. Thanks!

    #164463
    valeriewallace
    Participant

    Looks like this issue is fixed. Not sure how, but thank you!

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Remove "Blog" and "From the Blog" and the date posted line’ is closed to new replies.