MyBB Community Forums

Full Version: changing color of text problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys

Im trying to change the color of text links in the profile page for members info etc.

for the area of text ive made a new class called: td class="trowprofile" & then gone to global.css & added this code but the text links are staying white & not black Sad ?

.trowprofile {
	background: #efefef;
	color: #000000;
	border: 0px solid;
}

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

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

.trowprofile a:hover, .trowprofile a:active {
	color: #000000;
	text-decoration: underline;
}
hard refresh the profile page { use CTRL + F5 , may be 3 - 5 times } to see the changes ...
.trowprofile {
	background: #efefef !important;
	color: #000000 !important;
	border: 0px solid !important;
}

.trowprofile a:link {
	color: #000000 !important;
	text-decoration: none !important;
}

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

.trowprofile a:hover, .trowprofile a:active {
	color: #000000;
	text-decoration: underline;
}
[/quote]