如何在侧栏中添加一行?

How to add a line in the side column?

我想在右侧栏中的单个 post 标题、单个类别和月份之间添加一行。 (这里是link,说明我的意思:www.veda-vit.de) 有谁知道我该怎么做? 非常感谢你。 你好, 普拉达纳

如果您希望标题和内容之间有一行,您可以将 border-bottom: 1px solid #ccc; 添加到 .widget-title,如下所示:https://www.dropbox.com/s/50b6f862ied5hv6/Screenshot%202016-11-12%2007.24.05.jpg?dl=0 or if you'd like lines between each item like the screenshot below you would add the border CSS to .widget-container ul li https://www.dropbox.com/s/kn8pu2r4g7y6njt/Screenshot%202016-11-12%2007.23.48.jpg?dl=0

已更新CSS:

#secondary .widget-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}