How can i remove horizontal scroll bar wordpress admin editor

Here is screen shot : http://d.pr/i/QhkF

My theme is : http://www.templatemonster.com/wordpress-themes/37712.html

Read More

Any idea?

Related posts

Leave a Reply

2 comments

  1. If you want to fix the content area of an editor of wordpress, then the only way way to do this by adding the custom css to your default template.

    To do this go to your default template and add the below line to your functions.php.

    suppose i have given a name for my custom css file like test.css.

    add_editor_style('test.css'); //in functions.php
    

    and then create a file named test.css (or whatever) in your theme directory and put this line of code inside it:

    html .mceContentBody {
            max-width: 400px !important; // whatever improbable size you want
    }
    
  2. When you personalize your site you’ll need to go to site styling > custom CSS and add this script :

    body {
        overflow-x: hidden;
    }
    

    It will enable your horizontal scroll.