• mydlina

    (@mydlina)


    Hello,
    I searched all the topics but I have not found coment solve my problem.
    I want to expand the text box in writing articles.
    I looked everywhere in the CSS but nothing.

    Can you tell me how to expand the window because now it is small.

    Thank you for your help

    Mydlina

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi Mydlina,

    You can extend the width of Post Editor by adding the following CSS code in your site using this plugin http://wordpress.org/plugins/add-admin-css

    body.post-type-post #poststuff #post-body.columns-2{
    margin-right: 0 !important;
    }

    Best Regards,
    WPMU DEV

    Thread Starter mydlina

    (@mydlina)

    Hi Thank you for Help

    I installed Plugin and added code but it’s not OK


    Look

    I would like extend more

    Sorry my english is very bad

    Hi Mydlina,

    Thank you for your reply.

    Along with previous code please create a file editor-style-post.css in the root folder of your child theme containing following CSS code.

    html .mceContentBody.post-type-post{
    	max-width: 100% !important;
    }

    Also add the following code in the functions.php file of your child theme.

    function my_theme_add_editor_styles() {
        add_editor_style( 'editor-style-post.css' );
    }
    add_action( 'init', 'my_theme_add_editor_styles' );

    Kind Regards,
    WPMU DEV

    Thread Starter mydlina

    (@mydlina)

    Hi

    It’s OK.

    Thanks you very for your help. I’m so happy Thanks You. 😀

    You are most welcome, if I can be of any further assistance please don’t hesitate to ask 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Extend Width Post Editor’ is closed to new replies.