Hi.
under 631px width the toolbar and sidebar changes to "mobile" layout. But the padding-left of group heading div is still there and has too much padding-left.
cause is the padding here from this css line: Look at the screenshot 1.
body div#fd.es .es-dashboard .es-container .es-content .group-heading{
padding: 0 0 0 20px;
}
I solved it in my own site by adding this: Look at my solved screenshot 2
@media (max-width:631px){
body div#fd.es .es-dashboard .es-container .es-content .group-heading{
padding: 0 0 0 0;
}
}
Nice weekend to you all