Unable to create, preview, edit posts in Cornerstone?

My website is under construction, have been working on it for a while and all was ok.

Seems I cannot edit and preview any new posts whether in WP editor or Cornerstone, preview is just a blank page?

Deleted and reinstalled Cornerstone. No go.
See secure note below.

Thanks for your help, been troubleshooting for hours.
:frowning:

Hello Isabelle,

Thanks for writing in!

You are having this issue because you have inserted a broken css. You have this custom css:

.single-post, .entry-featured {
    display: none;
}

.single-post, .entry-thumb {
    display: none;
}

The correct code should be:

.single-post .entry-featured {
    display: none;
}

.single-post .entry-thumb {
    display: none;
}

Please check single post page now.

1 Like

Thank you so much! And thank you for replying so fast :smile:
You are the best!

Dang comma :rage: Really need to brush up on CSS

Have a wonderful day, can’t thank you enough for your awesome support.

You’re welcome Isabelle!
We’re glad we were able to help you out.

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