如何更改wordpress中的链接颜色

时间:2012-12-20 19:52:18

标签: wordpress colors hyperlink

我在线使用免费的Wordpress。我想改变链接的颜色。当我在http://www.w3schools.com中测试此代码时,它运行良好:

<!DOCTYPE html>
<html>
<body>
<table style="background-color:white;width:100%;">
<tbody>
<tr valign="TOP">
<td> <img border="0" src="http://www.kuffelcreek.com/favori14.jpg" width="430" height="480" /></td>
<td>
<p><div style="color: #FF0000"><a  href="google" style="text-decoration:none;" onmouseover="this.style.color='#FF0000'" onmouseout="this.style.color='#000000'">google link</a></div></p>
description
</td>
</tr>
</tbody>
</table>
</body>
</html>

然而,当我在Wordpress中粘贴此代码然后更新它时,它会自动删除onmouseover="this.style.color='#FF0000'" onmouseout="this.style.color='#000000'"并且代码结果如下:

<table style="background-color:white;width:100%;">
<tbody>
<tr valign="TOP">
<td> <img border="0" src="http://www.kuffelcreek.com/favori14.jpg" width="430" height="480" /></td>
<td>
<p><div style="color:#FF0000;"><a href="google" style="text-decoration:none;">google link</a></div></p>
description
</td>
</tr>
</tbody>
</table>

如何避免Wordpress删除我的代码?如何在Wordpress中更改链接的颜色?

1 个答案:

答案 0 :(得分:2)

要使用CSS更改所有链接的颜色,您可以将其保存到外观→自定义设计→CSS编辑器:

a:link,a:visited {color:#f00; }