Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近安装了新的 wordpress 主题。问题是,只有以下字体选项可供选择。
但我想将 Arial 设置为所有内容的默认字体。
试图更改主题的 css 文件。没有成功!
如何将所有字体更改为 arial 或支持所有 utf-8 字符的字体?
只需将这行代码添加到主题目录中 style.css 的最后一行即可。
body {font-family: "Arial" !important;}
添加 !important 你只是被级联了。
body { color: #333; font-family: "Arial" !important; font-size: 13px; line-height: 1.62em; }
你也应该包括这样的后备"Arial", sans-serif !important
"Arial", sans-serif !important