Don't sweat it, this is what the guild is here for
blaugh And I'm sure these threads are helping a lot of other people too.
There's a css property called 'border-style' to do things like that:
Quote:
table {border-style: dotted}
all four borders will be dotted
table {border-style: dotted dashed}
top and bottom border will be dotted, left an right border will be dashed
table {border-style: dotted dashed solid}
top border will be dotted, left and right border will be dashed, bottom border will be solid
table {border-style: dotted dashed solid double}
top border will be dotted, right border will be dashed, bottom border will be solid, left border will be double
So I guess 'border-style: dashed;' is what you are looking for? Beware though - different browsers render these borders differently, and some not at all.
*EDIT* This info was found
here, since I only vaguely remembered the css rule for it
sweatdrop