Remove "Tag/Category Archives:" From Tag And Category Pages On Elemin Theme
-
I am using the Elemin Theme.
Please let me know what Custom CSS I can use to remove:
“Tag Archives:” from tag pages and “Category Archives:” from category pages.
I just want the name of the tag/category alone to show on the top of the page.
Thank you.
The blog I need help with is: (visible only to logged in users)
-
Please use this style:
h1.page-title { visibility: hidden; } h1.page-title span { visibility:visible; }You can add left margin to the second rule if you wish to move the category or tag name to the left. But it is difficult to get uniform left margin across all pages because of the varied length of the names.
margin-left: -250px; -
Lets try use this css;
.archive.tag h1.page-title, .archive.category h1.page-title{ visibility: hidden; position: relative; } .archive.tag h1.page-title span, .archive.category h1.page-title span{ visibility: visible; position: absolute; left: 0; top: 0; }Let me know if you have another questions.
-
That was a bit of hasty response from me. Please chuck my CSS and use the CSS given by @nizamilputra.
-
This worked:
.archive.tag h1.page-title,
.archive.category h1.page-title{
visibility: hidden;
position: relative;
}
.archive.tag h1.page-title span,
.archive.category h1.page-title span{
visibility: visible;
position: absolute;
left: 0;
top: 0;
}Thank you very much for your help.
- The topic ‘Remove "Tag/Category Archives:" From Tag And Category Pages On Elemin Theme’ is closed to new replies.