Right I have a workaround I think. If there's any problems, post them and i'll go back to the drawing board.
First change: (found it customise.css)
| Code: |
.userboxes
background:#2A3233 none repeat scroll 0 0;
border:1px solid #2E3536;
margin-bottom:10px;
}
|
to:
| Code: |
.userboxes {
margin-bottom:10px;
}
|
then change:
| Code: |
.userboxes .moduletable {
padding:0 10px;
}
|
to:
| Code: |
.userboxes .moduletable {
margin-left:10px;
margin-right:10px;
padding:0 10px;
background:#2A3233 none repeat scroll 0 0;
border:2px solid #FFFFFF;
}
|