Remove the Post Icon/Category Archives header

Since Customizr 3.2, this feature has been built into the Customise Global Settings. See the Customizr Documentation.

Where to copy/paste this code?
The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme with Customizr here.

/* START OF Remove the Post Icon/Category Archives header */

/* 3.1 Remove the icon and category archives header */
header.archive-header {
display: none;
}

/* 3.1 Remove the icon before post titles */
.format-icon:before {
display: none;
}
/* END OF Remove the Post Icon/Category Archives header */

Credit: @Jason

 

25 thoughts on “Remove the Post Icon/Category Archives header”

Comments are closed.