Column and Image Issue

Hi guys,

Just realized that one of the pages broke - not sure, if the latest update caused that, but that’s when I notices it.

I have a page with a two columns structure in each row - one text and one image and vice versa. The page got totally messed up (assuming after the update) and the columns with the images disappear. When I tried to go there and rebuild it, the columns disappear when I put an image element in them…

You can see there are two columns, but the one to the right with the image in it, is not displayed:

p.s. tried to clear the cache and tested in a private window as well, same issue…

Any idea what is happening there?

Hi @kcreative,

I’ve downloaded that page template then imported to my local installation but it’s still working fine.

I was able to insert the image element to the left/right column:

Please try testing a plugin conflict. You can do this by deactivating all third-party plugins, and see if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.

Let us know how it goes!

Thank you for the quick reply! After some investigation it turned out that this code is interfering with cornerstone:

/* Hide Entry Image */
.entry-content > #cs-content .x-container .x-image {
  display: none;
} 

It was used to remove the featured images only on the articles, but not on the Blog page itself. By the way, is there a way to do that without messing up Cornerstone?

Thank you!

Hello @kcreative,

Thanks for updating the thread. :slight_smile:

Please try following CSS under X > Theme Options > CSS:

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

Let us know how it goes.

Thanks.

That did the trick! Thank you for your help!

You’re most welcome!

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