Remove "Category Archives" tag at the top of linked page?
-
Hello.
I’ve searched this forum for the specific code to remove or hide “Category Archives” from a few of my linked pages. I tried a couple of the CSS suggestions out and none of them worked. I presume it must be a theme issue.
For example, I read one suggestion of simply turning posts into pages or vice versa. I don’t want to turn my posts into pages because I’d like to keep my front page grid as is. However if there is a way for my posts to serve as pages while keeping its original form, I’d love to know.I’ve also tried the following codes to no avail:
.archive-header {
display: none;
}.category .single-title h1 {
display: none;
}That said, is there anyway to remove the “Category Archives” tag atop a few of my linked pages?
The blog I need help with is: (visible only to logged in users)
-
To remove the headings from all category pages, add this:
.category .page-title { display: none; }To remove it selectively, you need the IDs of the particular category pages. For example, this will remove the heading from the “Full Length Work” category page:
.category-141633243 .page-title { display: none; } -
Cool!
I know I might be splitting hairs here but is there anyway I can get the actual TAG back, only removing the “Category Archive” text?
-
Try this:
.category .page-title { font-size: 0; }It should reduce “Category Archives:” to nothing but leave the rest intact, as the rest is enclosed in its own span tags.
-
-
- The topic ‘Remove "Category Archives" tag at the top of linked page?’ is closed to new replies.