在WordPress中修改网站的字体颜色、大小和行间距 数据采集数据分析博客

上次在wordpress中修改网站字体里介绍了如何通过样式表修改自己网站的字体、大小、行距等参数,这次是再一次对网站的字体进行了微调。

Ctrl+F检查。

1、字体颜色:找到

.entry-title a: link,

.entry-title a: visited{

color: #2299cc;

将颜色改为#0E73B8。

2、行间距:找到

body,

button,

input,

select,

textarea {

color: #404040;

font-family: ‘Roboto’, Tahoma, Arial;

font-size: 16px;

font-size: 1rem;

line-height: 1.5;

将line-height: 1.5改为line-height: 1.4。

3、字体大小:找到

.type-post .post-thumbnail-small + .entry-header .entry-title,

.widget-category-posts .large-post .entry-title    {

font-size: 20px;

font-size: 1.25rem;

将font-size: 1.25rem改为font-size: 1.1rem。

4、同上:找到

@media only screen and (max-width: 70em) {

.top-navigation-menu a {

font-size: 12px;

font-size: 0.75rem;

}

.social-icons-menu li a:before {

font-size: 21px;

}

.page-title,

.entry-title {

font-size: 26px;

font-size: 1.625rem;

将font-size: 1.625rem改为font-size: 1.325rem。

你可能感兴趣的:(在WordPress中修改网站的字体颜色、大小和行间距 数据采集数据分析博客)