Dashboard Adopting Theme Styling.

Permalink
Does anyone have any suggestions as to how to stop the dashboard picking up styles from a theme?
Dashboard is using H1 & H2 & body from my theme which makes the dashboard look weird.

madeforspace
 
adajad replied on at Permalink Best Answer Reply
adajad
Prepend all your styles and also wrap all your code in a div with a unique id to really rule out clashes:

<body>
<div id="mfs-wrapper">
    [rest of your code]
</div>


#mfs-wrapper .mfs-yourClass{styling}
#mfs-wrapper h1{styling}
madeforspace replied on at Permalink Reply
madeforspace
Hi adajad

I thought about that but guess I was just hoping for a lazier way of doing it.
Guess I will need to go back to my style sheets and remember to do it from the outset on my next site.

Thanks for your help.