Hi,
I have a text that was suppose to be black, but i don't know how the text is white:

body {
	background:#FBFAF5 repeat-x top left;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: justify;
	color: #666666;
	margin:0 auto;
}

h1 {
}

h2, h3 {
	margin-top: 0px;
}

h4, h5, h6 {
}

p, ol, ul, dl, blockquote {
}

a {
	color: #000000;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	color: #235510;
}


/* Header */

#header {
	width: 950px;
	height:100px;
	margin: 0px auto;
	}

#header h1 {
	text-align: left;
	margin: 0px;
	padding-top: 40px;
	font-size: 32px;
	color: #000000;
	padding-left: 10px;
}

#header h2 {
	margin: 0px;
	text-align: center;
	font-size: 11px;
}

#header a {
	text-decoration: none;
	color:#000000;
}

/*banner*/
#banner {
	width: 950px;
	height: 346px;
	margin: 0px auto;
	background:url(images/bann_menu.png) no-repeat left top;
}


/* Post */

.latest-post {
	padding: 0 0 1em 0;
}

.latest-post h2 {
	margin-bottom: 0.5em;
	padding: 8px 10px 2px 10px;
	text-transform: uppercase;
	font-size: 16px;
	color: #000000;
	border-bottom: 1px solid #cccccc;
}

.post {
	padding: 2em 0 1em 0;
}

.post h3 {
	margin-bottom: 0.5em;
	font-size: 1.2em;
	color: #000000;
}

.file * {
	color: #5B5B5B;
}

/** Forms */

form {
	margin: 0px;
	padding: 0px;
}

.input1 {
	width: 110px;
	background-color: #2A2A2A;
	border: 1px solid #363636;
	color: #000000;
}

/* Content */

#content {
	width: 950px;
	margin: 0 auto 10px auto;
	padding: 0px 0px 0px 0px;
}

#colTwo {
	margin: 0px;
	padding: 0px 15px 15px 15px;
	background-color: #F3F2EC;
}

#colTwo p {
	line-height: 25px;
}
#colTwo img{
	padding-right:10px;
	padding-top:10px;
}
	
#colTwo h3{
	padding: 10px 10px 2px 10px;
	text-transform: uppercase;
	color: #000000;
}

/* Footer */

#footer {
	width: 100%;
	margin: 0px auto;
	padding: 15px 0px;
	height: 200px;
}
#footer a{
	text-decoration:none;
	color: #38831E;
}
#footer p {
	margin: 0px;
	text-align: center;
	color: #38831E;
}
.devider{height:20px;}
.services{
	padding:10px;
	border:#E2F9BD 1px solid;
	background-color:#FFFFFF;
	margin-top:30px;
}
.button{
	display:block;
	width:80px;
	height:25px;
	background:#38831E;
	color:#FFFFFF;
	float:right;
	margin-bottom:5px;
	padding-left:15px;
	}
<td class = "table_title">
<h3> A Nossa Escola </h3>
<p align = "justify">
A Escola de Música de V.N.Gaia existe desde 1979. O nosso principal objectivo é incentivar o gosto musical de todas as pessoas seja qual for a idade.
<br/>
Os nossos Cursos estão divididos por graus (1º ao 5º) e no final de cada ano lectivo serão inseridas as notas dos alunos.
Essas notas resultam do trabalho, não só individual mas também a integração em grupo.
<br/>
AVISO: Isto é uma escola ficticia, apenas se trata de um projeto escolar.
</p>
</td>

Recommended Answers

All 3 Replies

if that paragraph is not inside the #footer

then where is the declaration in your css for just a <p> tag to be black?

#footer p {
	margin: 0px;
	text-align: center;
	color: #38831E; // change to black
        color: #000000;
}

Otherwise just

p {
margin: 0px;
text-align: center;
color: #000000;
}

hope it helps

And don't use tables for layout - as a technique, that is soooo last century

I'm kinda shaking my head and laughing my ass off.

PF2G was writing HTML/CSS tutorials just two months ago and when a couple poster made note of his mistakes / things he left off, he couldn't take the criticism and went off on them. However, the guy who writes tutorials can't even fix such a simple issue?

/rant

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.