Home Forums Free Themes Greatnews hide date & categories on posts

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #158481
    Susanna Freymark
    Participant

    How do I hide date and categories on individual posts?

    Also – have tried everything to hide header image on posts. Can you help?

    #158486
    Psink
    Keymaster

    @SUSANNA-FREYMARK, there is the options to hide date and category inside theme customizer. Please follow the screen record
    https://www.awesomescreenshot.com/video/5469067?key=6fddb78e8bad0e5f73b5f91cd695a284

    And can you please confirm is that the parts inside the red circle that you want to hide
    https://www.awesomescreenshot.com/image/14378869?key=2fd334b780e855879846ce8aebf58edf

    If that’s the one, please add this css in the additional css to hide header image

    
    .single-post #page-site-header {
        display: none;
    }
    

    hope this will cover to solve your issue

    #158495
    Susanna Freymark
    Participant

    I was talking about hiding the categories and date on the front page stories as it looks too busy.
    I/m using Greatnews pro.

    I took a screenshot but don’t know how to send it to you. Here’s link to front page.

    https://indynr.com/?vhp_flush_do=all&_wpnonce=e33249ede3

    Thanks.

    #158556
    Psink
    Keymaster

    Oh, sorry I thought it’s for a single post page.

    here is the new code, to hide the date and category of the posts on the homepage, add this in additional CSS

    
    .home .entry-meta {
        display:none;
    }
    

    and this to fixed topbar search design issue

    
    @media screen and (min-width: 1025px){
      .main-navigation form.search-form input {
        padding: 0 10px;
        padding-left: 60px;
      }
    }
    
    form.search-form button.search-submit {
        left: 20px;
    }
    
    @media screen and (max-width: 1024px){
       .main-navigation form.search-form input {
         padding-left: 60px;
       }
    }
    

    Your homepage looks something like this – after adding code in additional CSS
    https://www.awesomescreenshot.com/image/14425691?key=71260feaffc284d2193103f98bd9b10f

    Please let us know if you have any other issues that needs to be fixed

    #158850
    Susanna Freymark
    Participant

    How do I hide the author name and pic on the post slider on the front page? Using Greatnews pro

    #158899
    Psink
    Keymaster

    please add this CSS in the additional CSS

    
    #posts-slider .author-wrapper {
        display: none;
    }
    
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.