Hi,
I would like to change the divider bars in the recent news widget to thin dotted lines. I found the following code in another thread and added it to my custom CSS:
.widget_recent_entries li {
margin-bottom: 5px;
border-bottom: 1px dotted #d3d3d3;
padding-bottom: 5px;
}
#footer .widget_recent_entries li {
border-bottom: 1px dotted #444444;
}
Works for getting dotted lines, but the thick bars are still there. What’s the CSS to remove these bars.
Oh, actually it was set with border-top.
.widget_recent_entries li {
border-top: 0px;
}
Solved! But thx for reading! :)
Final code:
.widget_recent_entries li {
margin-bottom: 4px;
border-top: 1px dotted #d3d3d3;
padding-bottom: 4px;
}