X Theme Blog Posts Missing "Insert Shortcodes Element" Cube

I am hoping to only affect 1 blog post, not all of my blog posts.
I have used WP to create about 200 posts already because I didn’t know that I could use Cornerstone.
So now I was thinking of trying it but I need the Cornerstone generated posts to have the same width and look as all of the other posts.

Thank you :slight_smile:

Hi There,

In that case, we have to add post id on the CSS like below:

.postid-5940 .x-main.left {
    padding-right: 0;
}

That CSS will work for this post: https://artthescience.com/blog/2017/10/27/creators-bojana-ginn/
For other post, change post ID. See this: https://theme.co/apex/forum/t/setup-how-to-locate-post-ids/59
When applying it to multiple post, it can be like this:

.postid-1 .x-main.left,
.postid-2 .x-main.left {
    padding-right: 0;
}

Hope this helps.

That’s brilliant! Thank you :slight_smile:

You’re welcome!