html - CSS can't be overwritten, no matter how ; Wordpress with responsive style_options.php -
so problem awkward, have wordpress website on can't overwrite css. on i've added google font.
the problem when want overwrite css using either id , class selector, or embeding style html, font get's overwritten.
how overwrite css (font-face) coded in css in style_options.php generates options.css.
did solve problem already?
thank answers!
strictly speaking, if want attribute not overwritten, need use !important
so:
p { color: blue!important; } #myid { color: red; } <p id="myid">this text blue.</p>
but think should check in theme's option, there's gotta way edit within wordpress such things font. (thanks vineet kaushik pointing out)