• Hello,
    I would like to change the background picture on the Blog Post page.
    For the Blog post page I’ve used the tool in:

    Settings -> Reading -> Post Page -> Blog. (the standard blog in WP)

    And I’m using Gutenberg tool.

    But, every block I will add, the Front-end Blog Post page doesn’t show nothing:
    I mean, I see the posts (great), but nothing more.
    Anyway my question are:

    HOW CAN I CHANGE THE BACKGROUND TO THIS PAGE?

    I’ve installe dalso the plug-in called “Custom Background Changer”, but without luck…

    Thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter cecofuli

    (@cecofuli)

    Hello,
    I would like to change the background picture on the Blog Post page.
    For the Blog post page I’ve used the tool in:

    Settings -> Reading -> Post Page -> Blog. (the standard blog in WP)

    And I’m using Gutenberg tool.

    But, every block I will add, the Front-end Blog Post page doesn’t show nothing:
    I mean, I see the posts (great), but nothing more.
    Anyway my question are:

    HOW CAN I CHANGE THE BACKGROUND TO THIS PAGE?

    the Blog Page ID is 56, so

    .page-id-54
    { background-image:url(” https://www.xxx.yyy”);
    background-repeat:no-repeat;
    background-attachment:fixed;
    }

    But, it doesn’t work. But, if works, for example, with another id page, like.. HOME (page-id-42)

    It’s strange…

    Thank you!

    Hello,

    Add the below CSS to the Customize > Custom CSS section to change the background image only for the blog page.

    body.blog {
        background-image: url(add you url here)!important;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
    }
    • This reply was modified 5 years, 9 months ago by Amit Singh.
    Thread Starter cecofuli

    (@cecofuli)

    HEllo Amit,

    mmm… unfortunately, it doesn’t work =(
    I also removed the background from the General Option but.. nothing…

    If possible please share your site link. Without seeing the site it is very difficult to troubleshoot the issue and give the correct solution.

    Thread Starter cecofuli

    (@cecofuli)

    Hello Amit,

    unfortunately, it’s on WAMP (locally)
    Ok, it’s not a big problem. When I will be online, I will send you the link.

    In the main time I will continue to build the webstie. I love OceanWP!

    Sure, happy to hear that you love OceanWP.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to change background to Blog post page?’ is closed to new replies.