Analysis fields in dashboard widget is breaking out (fix included)
-
As you can see in the image, the analytics fields in the dashboard widget break out regularly.
To fix this, the following code in dasboard-widget.css
#rank_math_dashboard_widget h3, #rank_math_dashboard_widget .rank-math-dashboard-block { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; }
must be modified into
#rank_math_dashboard_widget h3 { { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; } #rank_math_dashboard_widget .rank-math-dashboard-block { display: grid; grid-template-columns: 50% 50%; }
And voila – the display of the fields is now as expected:
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Analysis fields in dashboard widget is breaking out (fix included)’ is closed to new replies.