Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Thanks for using Tracks!

    This would take quite a bit of custom code to remove, but I can point you in the right direction.

    You can add the content.php file to a child theme and then remove the .entry-categories and .entry-tags divs to get rid of the tags and categories. Then, in the child theme’s style.css file, you would want to increase the width of .entry-container by decreasing the padding.

    Here’s an empty Tracks child theme you can use to get started.

    Hi Ben

    What if I have installed the child theme you gave me the last time, what should I add in the child theme in order to remove the “Categories”?

    I tried to understand the explanation but I still do not know how to.

    Thank you so much Ben!

    Theme Author Ben Sibley

    (@bensibley)

    The method I shared above is the right approach, but a bit complex. An easier way that will get the job done is to simply paste the following CSS into your child theme’s style.css file:

    .entry-categories, .entry-tags {
      display: none;
    }

    That will remove the categories and tags displayed on the sides of the posts.

    THANK YOU SO MUCH BEN! The categories section is removed just by pasting your code.

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome, glad it’s working for you 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘remove side "Categories" and expand content’ is closed to new replies.