Help with CSS: Overriding inline CSS

Try this:

span {
font-family: Times, Georgia, Courier, serif !important;
font-size: 16px !important;
font-weight: inherit;
}

Because you are setting the font weight twice in the inline CSS, that might also be causing some problems and might need to be updated. But it is perfectly feasible to specify font size, weight and face separately.

3 Likes