Post image background wont show

Hello

Im trying to add a background image to my blog post but it wont display… ive added the image link to “background image” within the cornerstone editor, as well as from the wordpress page editor, and no luck… i want the post to be full width background (and its set to that as well) but the images simply wont display. I dont have a color background that overrides the image either…

im using the icon stack. thank you!

1 Like

Hello @neojits,

Thanks for writing in!

You can add following CSS under X > Launch > Options > CSS to have background on post:

.post .entry-wrap {
    background-image: url(image url);
} 

Please replace image url with path of the image.

Thanks.

Hi Prasant

Thank you! This worked, but i have 2 issues with it… (sorry…!)

1- I dont want the same back ground for all my blog posts, anything i can do for each specific post?

2- Its also nor paralaxed, how can i trigger that?

Thank you!

Hello @neojits,

  1. Yes you can take advantage of page id. Please refer following post on how you can locate page/post id. https://theme.co/apex/forum/t/setup-how-to-locate-post-ids/59. Sample code would look like:

    .postid-1 .post .entry-wrap {
    background-image: url(image url);
    }

  2. Please refer following post to create parallax effect. https://www.w3schools.com/howto/howto_css_parallax.asp

Thanks.