• Resolved chuprinaphoto

    (@chuprinaphoto)


    Hello all. How do I remove the first column including author image, author name, date, and keywords from the blog section of this theme?

Viewing 1 replies (of 1 total)
  • Joel Williams

    (@joelwills)

    Automattic Happiness Engineer

    Hi there!

    The easiest way would be to add some custom CSS to your child theme or in the Customizer under Additional CSS to hide it and then make the content wider:

    
    @media (min-width: 768px) {
      aside.entry-meta {
        display: none;
      }
      .hentry.type-post .entry-content {
        width:100%;
      }
    }
    

    Hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘removing a column.’ is closed to new replies.