PDA

View Full Version : some border questions


wizardsolutions
03-15-2007, 11:34 AM
A screenshot is attached of what I want to get rid of.

How do I get rid of the border surrounding the forum header? For instance, I'm posting this in Community Discussions, and there's a bordering surrounding that forum. I would like to get rid of the border around the Community Discussions header. Also, how do I change the inner table border like this site?

CyberAlien
03-15-2007, 03:17 PM
Whole header is in one table, and those borders are table cellspacing, so to remove those borders you'll need to move header outside of table. Easiest solution is to put it in <caption> inside table, so code would be like this:<table ...>
<caption>
header text
</caption>
<tr>
...and the rest of tablethen in css add this:caption {
display: block;
margin: 0;
padding: 3px;
...background, color, etc...
}
Note: this just an idea of how it can be done, not exact code.