How to remove edX default style

Such as with the class .btn, there is default style:

.btn {
    font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
    text-decoration: none
}

I made a file “_overrides.scss” in my theme, so I could override the styles:

.btn {
    font-family: Quicksand;
}

But I don’t want to override this attribute, I want to completely remove font-family: “Open Sans”,“Helvetica Neue”,Helvetica,Arial,sans-serif;. How to?

You can set font-family to none or reset. If these properties still not work, try including !important with them.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.