Tagged: Blog, blog category, blog title, Hide, Home, post
Under a blog title is the “date/comments/category/author” text content. How do you hide that line on ONLY the home page?
Hi,
Please add this on your custom.css
.home .post-meta-infos {
display: none;
}
OR
Inspect your homepage using Chrome. Click Inspect Element, scroll to the <body> tag. Look for something like this inside the body tag.
class="page page-id-1122
.page-id-1122 is the unique body class of your homepage. Add this on your custom.css
.page-id-1122 .post-meta-infos {
display: none;
}
Your home page id might be different from mine. Please check yours.
Regards,
Ismael
Neither worked. The code was added to Enfold / Styling / Quick CSS. Is this the correct place? Page IDs were easily found. Other ideas?