how to remove DATE/TIME STAMP and CATEGORIES ARCHIVES: line
-
Could anyone instruct me how to remove the date/time stamp on my posts AND how to remove the ‘CATEGORIES ARCHIVES: ______” line?
A kind forum mate sent me the following CSS code that can remove the date/time stamp. But I’m a total beginner to wordpress… so… could anyone teach me how STEP by STEP how I can insert the helpful tag below to do what I want to do?
Thanks in advance!
AC.entry-meta a[rel=”category tag”] {
visibility: visible;
float: left;
}.entry-meta a[rel=”category tag”]:before {
content: “This entry was posted in “
}The blog I need help with is: (visible only to logged in users)
-
• You change things by adding code in the CSS editor (Appearance > Custom Design > CSS). Make sure you delete the whole intro message first.
• The code you pasted above is not helpful.
To remove the date&time stamp, paste this into the CSS editor:footer.entry-meta { display: none; }To remove the heading on category pages, paste this:
.category .archive-header { display: none; } -
Thanks for that Justpi.
I didn’t realize it was that easy. What gave me trouble was my previous codes didn’t work AND I wasn’t sure where to insert the code into my CSS page. It looks like you simply stick it in the end, and it works. Thanks a lot.
- The topic ‘how to remove DATE/TIME STAMP and CATEGORIES ARCHIVES: line’ is closed to new replies.