Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #177520
    Glen Pavelich
    Participant

    Can you provide the CSS to remove ‘home’ from this main page without also removing the other page or post titles.
    https://radisson.ca/

    #177554
    Skandha
    Participant

    @fireflywebs: Hello Glen,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .home #content .entry-title {
          display: none;
    }

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

    #177678
    Glen Pavelich
    Participant

    Thanks but that also takes out the titles to the posts which can be viewed a little further down on the page.

    See. The first post is “Tax Payers Meeting”. https://radisson.ca/

    #177743
    Skandha
    Participant

    @fireflywebs: Hello Glen,
    Use the following CSS Code instead of the above
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .hentry .entry-title {
    	display: none;
    }
    .category-current-posts .entry-title {
    	display: block;
    }

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

    #177807
    Glen Pavelich
    Participant

    OK. Works up to a point. With this code however, the other pages do not have titles AND the ‘post archives’ ….those posts other than .category-current-posts do not have titles.

    IE – post archives
    https://radisson.ca/updates/page/2/ (most on this page are not .category-current-posts)

    #177867
    Skandha
    Participant

    @fireflywebs: Hello Glen,
    The following CSS Code should work out.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .home .hentry .entry-title {
    	display: none;
    }
    .home .category-current-posts .entry-title {
    	display: block;
    }

    Let me know if this finally works out!
    Kind Regards,
    Skandha

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove Home’ is closed to new replies.