Question : Dreamweaver CS4 table border color

wanting to add a border color to a table in dreamweaver CS4. Was simple in CS3 but I understand from a little research that you now have to use CSS? If so, please can someone provide me with the steps. I'm new to CSS and not totally getting it but could probably figure out how to copy and paste correct code. Thanks!

Answer : Dreamweaver CS4 table border color

So just add the code I provided to this area in the head of the document

you will also want to uncomment the code...i.e. remove the <--    and -->
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
<style type="text/css">
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	background-color: #FFF;
}
.copy {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 36px;
	font-weight: normal;
	font-variant: normal;
	color: #000;
}
.copy {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
}

table
{border: solid 5px #000000}

</style>
Random Solutions  
 
programming4us programming4us