Quote:
Originally Posted by Spangle
try something along these lines ?
Code:
{
border-top-style:dotted;
border-right-style:solid;
border-bottom-style:dotted;
border-left-style:solid;
}
If you leave out the left/right on the relevant cells you should make the RSS Cell appear as if it's not there.
http://www.w3schools.com/css/css_border.asp
|
I've gotten this far...
Code:
.cell-forum {
border-left-style:dotted;
border-bottom-style:dotted;
border-top-style:dotted;
border-width:1px
}
.topics-count {
border-left-style:dotted;
border-right-style:dotted;
border-bottom-style:dotted;
border-top-style:dotted;
border-width:1px
}
.posts-count {
border-right-style:dotted;
border-bottom-style:dotted;
border-top-style:dotted;
border-width:1px
}
.lastpost {
border-right-style:dotted;
border-bottom-style:dotted;
border-top-style:dotted;
border-width:1px
}
Which looks like this :
That solves the extra column issue. As you can see, the positioning of the borders problem is still there, and using padding to try and reposition text doesnt work...
EDIT : Thanks for the link btw!