Hiding Post Date on Posts

Hi there,

I have the following css code that used to hide the dates on my posts:

.x-post-slider-entry .featured-meta,
.x-recent-posts .x-recent-posts-date {
display: none !important;
}

however this is no longer hiding the dates and was wondering if you could help me figure it out.

Thank you!

Hi @twigglee,

Thanks for writing in!

Can you please try this CSS instaed of the old one.

.x-recent-posts .x-recent-posts-date {
 display: none;
}

Hope this works!

In case you want to learn CSS please check this.

Thanks

Hi @basanta

I have just tried it but it still doesn’t work.
(the dates don’t show when I’m in x-theme editing mode but will show when viewing live)
Is there anything else I could try?

Thanks

Hi,

I tested the code and it works.

There might be a syntax error in your css code that is prevent ing it from working.

Try to copy and paste your entire css code on the link below to check for some errors

http://csslint.net/

Thanks

Hey there,

I have cleaned it up a little bit but still can’t figure it out.
Here’s an image of global CSS if you can spot the issue would be awesome.

Thanks!

Hi,

Your code looks fine, still doesn’t work?

Would you mind providing us with login credentials so we can take a closer look? Please provide following information:

Set it as Secure Note

  • Link to your site
  • WordPress Admin username / password

All the best!

I’ve uploaded my details above.
Thank you for the support.

Hi @twigglee,

I couldn’t find where that CSS is implemented, there is non in the page source code and the account you provided has no capability to access Theme Options or builder.

Are you hiding the date of the post or post slider? I don’t see any post slider and the date on post are already hidden. What you need is just

.x-recent-posts-date {
display: none !important;
}

For recent posts element.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.