Hello guys! I'm currently setting up my forum and I want to change some defaults. I have SMF 2.0.2 The problem is that by default it doesn't have a post separator. But there's a mod to change that. Basically it modifies 2 files: Display.template.php and index.css My question is about the latter one. It adds this at the end of the file: .seperate { /* border: 5px solid #fff; thickness and color of box outline*/ margin: 7px auto; /*to push the gap between the posts*/ } I do get the white spacing between the posts, BUT what I had in mind was something that goes a little beyond that. I attached a file that shows how I would like it to look like more or less. The color of the border could be solid one, that's not so critical to me. When I tried to uncomment the 2nd line, what happened is that I got a border around the post and everywhere (ie. top, bottom, right and left) was the same. Same thickness that is... Anyway, if anybody knows what to do please let me know!
Nope, that's not what I wanted. As a matter of fact, now it's getting better, but it's still not what I wanted. I wrote that: .seperate { border-top: 25px solid #3a5284; thickness and color of box outline*/ border-left: 1px solid #3a5284; border-right: 1px solid #3a5284; border-bottom: 1px solid #3a5284; margin: 7px auto; /*to push the gap between the posts*/ } And strangely enough, I got everything right, BUT there's NO border on the left for some reason. Just an empty space as you can see on the picture I'm about to attach to this post. Any ideas?
It's OK now...just have to add a commenting sign. Didn't pay attention to that before... .seperate { border-top: 25px solid #3a5284; /*thickness and color of box outline*/ border-left: 1px solid #3a5284; border-right: 1px solid #3a5284; border-bottom: 1px solid #3a5284; margin: 7px auto; /*to push the gap between the posts*/ } It works like swiss clock now