How to delete a Portfolio date, help please

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:

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.