• Resolved hbee

    (@heatherbodlak)


    Hi,
    A strange thing is happening with this theme. I have set a dark background texture via the personalize appearance panel.
    When i go to add a page, or entry, or edit an existing one, the background of the ENTIRE page, when in the editor, only shows that dark background, making it very very difficult to work with, because the text is black on black.
    I have changed themes, and it’s definitely a Customify issue.
    Any idea what I can try to do to fix this?

    I might be forced to use a visual editor like Elementor. But I had hoped I wouldn’t have to.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • longnguyen

    (@longnguyen)

    Hi,

    Please add this custom code to the file functions.php in the theme/child theme folder to remove the background of the editor.

    add_action( 'admin_footer', function() {
    	?>
    	<style>
    	.editor-styles-wrapper {
    	    background-image: unset !important;
    	    background-color: #f1f1f1 !important
    	}
    	</style>
    	<?php
    } );
    Thread Starter hbee

    (@heatherbodlak)

    Thank you for your reply! That worked. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Customify and gutenberg blocks: set background image covering editor background’ is closed to new replies.