Look for this part:
var css =
And put your css inside there. So, for example, if your css is:
section.dashboard-sub-section > h3.small-caps {
text-align: left !important;
padding: 0 30px !important;
margin: 0 !important;
}
You’ll need it to look like this:
var css =
‘section.dashboard-sub-section > h3.small-caps {’+
’ text-align: left !important;’+
’ padding: 0 30px !important;’+
’ margin: 0 !important;’+
’}’;
I’d do the whole thing for you, but I’m on tablet right now. Editing isn’t fun :-/