• Resolved Taner Temel

    (@clu55ter)


    I have set up the OceanWP site and use an image background in customising/general options, but now when I create a new post or page the background wrapper in the Gutenberg block editor doesn’t have a colour and just shows the background image instead.

    Is there a way I can change the background of the wrapper to the standard white colour?

    Please see the screenshot linked below.
    screenshot

    Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Snapshot URL is not working.
    Please share a snapshot again.

    Try to add the below snippet code in the functions.php file of your child theme and check.

    function my_custom_admin_head() {
        echo '<style>.editor-styles-wrapper.block-editor-writing-flow {
        background: transparent !important;
    }</style>';
    }
    add_action( 'admin_head', 'my_custom_admin_head' );
    ?>
    Thread Starter Taner Temel

    (@clu55ter)

    Hello Abhishek,

    Thank you for your help, it worked a treat!

    All post and page wrapper background is now white instead of the background image.

    Thanks again.
    Taner

    You are most welcome and glad to hear that solution worked well.??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘admin panel post/page background colur’ is closed to new replies.