How to hide the date under the portfolio item?
As I have to re-create my portfolio from the post and Be cannot batch convert them, so the date is not needed.
How to disable the date only
- DateAugust 8, 2014
Or should there be a field to enter it a long with 'Client, Website, Task' ?
Comments
.single-portfolio .project-description li:nth-child(2) { display: none; }Thanks for understanding!
.single-portfolio .project-description { display: none; }.section-post-related .post-related .date_label { display: none; }
Thanks!
to remove date from single portfolio pages, you need to use the following css:
.single-portfolio .post-meta .author-date .date { display: none !important; }.single-portfolio .project-description { display: none; }.section-post-related .post-related .date_label { display: none; }
.single-portfolio .project-description { display: none !important; }Hi,
Try this css
.portfolio-item .desc {display:none !important;
}