• Hi there,
    I would like to know how to get rid of the Categories news writing under every post on my news page and subsequent post pages on my site.

    An example is here: http://polarismusic.co.uk/category/news/

    Also i would like to know how to left-align the ‘comments – leave a comment’ section on the same page.

    Thanks for your help, it is greatly appreciated.

    Louis

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey there Louis,

    How are you doing today?

    You should be able to remove this from your pages with some custom CSS. Since the theme that you’re using has its own custom CSS tab which is located in Appearance -> Customize -> Custom Settings -> Custom CSS you can try adding the following CSS there:

    .entry-footer span.cat-links.col-lg-4.col-md-4.col-sm-12.col-xs-12 {
      display: none;
    }

    This should remove category text and the category name from your posts. If the code doesn’t work please keep it added and let me know so I can take a look.

    Hope this helps 🙂

    Best regards,
    Bojan

    Thread Starter louis_hw

    (@louis_hw)

    Thank you very much Bojan, the code did exactly what i wanted it to.

    Out of curiosity and in case i need to make future changes to the site, what would i need to add to remove the ‘comments’ section from underneath each post?

    Thanks again for the help
    Louis

    Hey again Louis,

    You can also hide this with some custom CSS, to remove it from all posts please try adding the following:

    div#comments {
        display: none;
    }

    This should remove comment from from your site.

    Hope this helps 🙂

    Cheers,
    Bojan

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hiding categories.’ is closed to new replies.