Remove category tag line

Posted in: Newspaper
Post count: 18

How can i remove that?
http://prntscr.com/2picr6

Post count: 3343

Hello,
Do you want to remove the header title from category pages?
You can hide that with a CSS, add it in the CSS panel

.category header {
  display:none;
}
.category .td-category {
  display:none;
} 
.category .entry-content {
  display:none;
}

Thanks!

Post count: 18

Thanks Marius, i have another question like this.
How can i remove the footer sub menu? (i’m talking about which footer we are adding from widgets)

Post count: 3343

Hi,
You can to hide the menu from sub-footer? or entire sub-footer?

To hide the menu add this in CSS pane:

.menu-footer-container {
	display: none;
}

To hide the entire sub-footer add this:

.td-sub-footer-wrap {
	display: none;
}

Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.