DEV Community

NickLeins
NickLeins

Posted on

I don't know how to remove the headings from my own blog

I created my own blog https://binaryoptions.watch/, but I don't know how to remove the headings from it (so they don't appear at all). Here's an example http://prntscr.com/s392hh.

Top comments (2)

Collapse
 
stephanie profile image
Stephanie Handsteiner

If the theme comes with a settings page (which most professional themes do), you can hide the meta bits by going to the Appearance > Customise section of the Adminpanel.

You can also remove, or hide it using CSS, the HTML element .entry-category from your template files.

Collapse
 
helenanders26 profile image
Helen Anderson

Hi Nick, it looks like you're using the VT Theme on your Wordpress site.

Have you checked out the documentation for any options to hide this in Appearance > Customise?

If you don't have any luck there you can try adding code to hide it in Appearance > Customise > Additional CSS.

Like this:

#entry-category {display:none;}