In your CSS file, find:
.post{
padding: 10px 0 10px 0;
}
and replace it with:
.post{
border: 1px solid #000000;
margin: 10px 0;
padding: 10px;
}
That should do it for you. Let us know if you need anything else.
hey alex
it didnt seem to work – ive done it, but nothing visible..!?
Huh, well that’s strange. It’s probably a obvious thing somewhere but hell if I can find it, don’t envy you this problem.
But as they say: if you can’t solve it with brute force, try more brute force.
.post {
border:solid 1px #000000 !important;
margin: 10px !important;
padding: 10px !important;
}
nah that still didn’t work
…wonder where it’s going wrong ?!
start here and adjust as needed …maybe 🙂
.post .content {
margin: 10px 0;
padding:5px 0 5px 5px;
line-height:145%;
border: 1px solid #000000;
overflow:hidden;
}