如何更改博客页面上 link 的颜色?

How do I change the colour of the link on my Blog page?

在我网站的博客页面上,我博客文章的链接文本是蓝色的,我想将它们更改为其他颜色。

我尝试在 google 上搜索答案,但一无所获!

我的网站是http://bentleyandhudson.com/blog

如果你点击进入我的网站,你可以看到 poochplay ~ dog activity tracker 是蓝色的,这是我想要更改的文本。

在你的css中:

 a { 
color: black; } 

如果您想在悬停时更改颜色

 a:hover {
 color: red; } 

编辑 具体 class:

<a class="class1"></a>

在css中:

.class1{
 color: black;}

更具体一点:

h2.entry-title a {
     color:green;
}
h2.entry-title a:hover {
     color:red;
}

您的网站是WordPress网站,所以您可以这样更改博客页面中的link:

在您的网站中有一个文件: http://bentleyandhudson.com/wp-content/themes/bento/style.css

通过在其末尾添加以下代码对其进行编辑:

.blog .post .entry-header .entry-title a{
    color:black;
}
.blog .post .entry-header .entry-title a:hover{
    color:grey;
}

一定要重新加载浏览器缓存以加载添加到 style.css 文件的更改。 (按 CTRL+F5)

要为您网站中的每个 link 添加颜色,请将此代码添加到 style.css 文件:

a{
    color:black;
}
a:hover{
    color:grey;
}

要更改边栏上帖子的 link 颜色 "PE Recent Posts" 添加此代码:

.pe-recent-posts-title-tag a{
    color:black;
}
.pe-recent-posts-title-tag a:hover{
    color:grey;
}