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)


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -