Remove Scrollbar from Extensions List ( MainWP Custom Dashboard Snippet )

Better Extensions List

Here is another FREE MainWP Custom Dashboard snippit

I personally don’t care for Scrollbars, so I tend to eliminate them whenever possible. This may be useful for others.

Simply add this snippet to your CSS Tab within the MainWP Custom Dashboard extension.

/**
 * @snippet       Remove Scroll bar from MainWP Extensions Menu 
 *                ( goes well with moving "Go To WP Admin" to Top. https://bitbucket.org/snippets/keith_crain/ynkeaR )
 * @sourcecode    https://bitbucket.org/snippets/keith_crain/qnzXjA
 * @author        Keith Crain
 * @author_url    https://kronoslabs.io
 * @testedwith    WordPress v5.3.X
 */
#mainwp-main-menu #menu-item-extensions .content.menu {
    max-height: 100%!important;
    overflow-y: visible;
}

Grab off Bitbucket: https://bitbucket.org/snippets/keith_crain/qnzXjA

6 Likes