在Wordpress主题中更改字体

时间:2017-08-29 10:30:33

标签: html css wordpress fonts wordpress-theming

我目前正在使用Wordpress' Square'主题:https://hashthemes.com/wordpress-theme/square/

我希望修改导航菜单,下拉菜单以及帖子/页面中的字体。

我有我所需字体的真实类型文件,但我不确定如何修改CSS以实现我想要的。

任何帮助表示赞赏!

谢谢,

2 个答案:

答案 0 :(得分:0)

您可以尝试在style.css或自定义css文件中添加字体系列我在我的主题中使用了这个真实类型的脚本

<script src="https://use.typekit.net/uhs1xwe.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>

在css文件中我使用了这样的字体

.header_menu ul li {
    float: left;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0 18px 0 0;
    font-family: "sofia-pro";
}

答案 1 :(得分:0)

在style.css中,写下:

@font-face {
font-family: FontName;  
src: url(public_html/your-site/wp-content/themes/your-theme/fonts/FontName-Regular.ttf);  
font-weight: normal;  
}

然后使用

body{font-family: FontName !important;}

点击此处http://www.wpbeginner.com/wp-themes/how-to-add-custom-fonts-in-wordpress/ https://premium.wpmudev.org/blog/custom-fonts-css/?utm_expid=3606929-109.P6e7JvhjTrWFxwrJZjRkog.0&utm_referrer=https%3A%2F%2Fwww.google.co.in%2F