我正在使用Wordpress。 我想仅使用帖子标题和发布日期制作首页。 我已粘贴该代码:
<h1><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
发表于
请告诉我如何从帖子链接中删除下划线和蓝色。 请提及完整的代码以及粘贴的位置。
我读过有关{text-decoration:none;}
的内容,但没有粘贴它。
答案 0 :(得分:1)
您可以拥有几种不同类型的链接。每种不同的类型都需要设计风格。您应该可以通过点击仪表板中的Appearance-&gt; Editor在WordPress中添加自定义CSS。
添加以下CSS:
/* unvisited link */
a:link {
text-decoration:none;
}
/* visited link */
a:visited {
text-decoration:none;
}
/* mouse over link */
a:hover {
text-decoration:none;
}
/* selected link */
a:active {
text-decoration:none;
}
您可以在此处找到更多信息:http://www.w3schools.com/css/css_link.asp