The template I am using for my site (under development) is identical to this one.
I’d like to add a border image between posts (In this case between “Let You Know Music video” and “Land of Hope”) but not after the last post.
Which element do I edit (css source) to make this happen?
Do I edit the containsArticles class? dt containsArticles?
I’ve tried adding a background: url(/path/to/border-image.gif) no-repeat center bottom; to either element and cannot make it work. Ideas or suggestions?
There’s a rule already in there actually:
line: 1449
The reason why it’s not on the last child is because of this rule:
line: 682
The rule preventing this default behavior is
line:1418
all in
style.csscompletely removing that last rule will get you what you need.