我使用Duster作为我的主题。我想更改默认字体。有没有办法做到这一点?
答案 0 :(得分:0)
第1步安装插件,然后转到=> setting =>谷歌字体。如果要更改整个网站字体系列更改,请添加一个css选择器,然后添加一个body css选择器。
第2步转到=> Apperance => customize =>排版=>主题排版=>添加您要使用的字体系列。
答案 1 :(得分:0)
...或者,如果您不喜欢插件,只需执行此操作并在标题中的所有其他样式表之后添加样式表:
body {
font-family:Whatever, "Whatever In Space", sans-serif; /* Actual fonts of course chosen by you */
}
如果这不起作用并且改为font-family:Whatever, "Whatever In Space", sans-serif !important;
,则使用!important
通常被认为是最后的手段。
答案 2 :(得分:0)
如果您想在不使用任何插件的情况下更改字体,可以按照以下步骤操作:
wp-content->themes->my theme->font
中创建字体文件夹。在CSS文件的开头,添加以下行:
@font-face {
font-family: 'BYekan';
src: url('font/WebYekan.eot');
src: url('font/WebYekan.eot?#iefix') format('embedded-opentype'),
url('font/WebYekan.woff') format('woff'),
url('font/WebYekan.ttf') format('truetype'),
url('font/WebYekan.svg#WebYekan') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'BKoodakBold';
src: url('font/BKoodakBold.eot');
src: url('font/BKoodakBold.eot?#iefix') format('embedded-opentype'),
url('font/BKoodakBold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
-moz-font-feature-settings: "calt=0,liga=0";
}
将font-family
更改为:
font-family:"BKoodakBold",BKoodak,byekan,Arial,Helvetica Neue,sans-serif;
您想要更改字体的任何地方。