hello friends please I need to be able to delete the date in the index of my page Portfolio date, so that it is not visible, how do I do that help please
Hello Alberto,
Please add this code in X > Theme Options > CSS:

.entry-cover-content > span:nth-child(3) {
display: none;
}
Here are some related links for further reading:
- Intro to CSS - https://goo.gl/mFuWQT
- How to get CSS selectors - https://goo.gl/BmoH39
- Get Started With Viewing And Changing CSS - https://goo.gl/7xFhDa
- CSS Media Queries - https://goo.gl/L3ZHNg
Hope this helps.

hello thank you place the
el codigo css
.entry-cover-content > span:nth-child(3) {
display: none;
}
and it did not work, you can still see the date
Hello Alberto,
The code did not work because it is only intended for post meta. Based from your screenshot, you are referring to the recent posts element. In this case, you need this custom css instead:
.x-recent-posts .x-recent-posts-date {
display: none;
}
We would loved to know if this has work for you. Thank you.
1 Like
It worked thank you very much friend!
You’re welcome!
Thanks for letting us know that it has worked for you.
1 Like
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.