MyBB Community Forums

Full Version: Private Message Font Color! Strange. [SOLVED]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi I am again!!

When I receive private message or send to anyone. Recipient getting white color background. I cant even read the heading. When I selct the text by dragging. Then Its shows. Please tell me the solution to fix it. I know the solution is something inside css file. But which one.
Please explain step step.

[Image: 4835001.jpg]
Go to: ACP > Themes > Select your theme > Edit > global.css > edit in advanced mode > find;
.pm_alert {
...
}

and add the following code just below that;
.pm_alert a:link{
color: #FFFFFF;
}
.pm_alert a:visited {
	color: #FFFFFF;
}

.pm_alert a:hover, a:active {
	color: #FFFFFF;
}
global.css:

Find .pm_alert

Enter the following elements AFTER the .pm_alert element


.pm_alert a:link {
	color: #026CB1;
	text-decoration: none;
}

.pm_alert a:visited {
	color: #026CB1;
	text-decoration: none;
}

.pm_alert a:hover, a:active {
	color: #000;
	text-decoration: underline;
}

EDIT: Just saw Yaldaram's reply, however the color he gave in his css is #ffffff which is white and you're having a problem with the link text being white so just change the color to what you want/like and is visible.
Ok I am trying now wait for sec.
(2011-01-10, 10:33 AM)- G33K - Wrote: [ -> ]global.css:

Find .pm_alert

Enter the following elements AFTER the .pm_alert element


.pm_alert a:link {
	color: #026CB1;
	text-decoration: none;
}

.pm_alert a:visited {
	color: #026CB1;
	text-decoration: none;
}

.pm_alert a:hover, a:active {
	color: #000;
	text-decoration: underline;
}

EDIT: Just saw Yaldaram's reply, however the color he gave in his css is #ffffff which is white and you're having a problem with the link text being white so just change the color to what you want/like and is visible.

[Image: 4835230.jpg]
My username and subject is still in white. I want in dark. so i can read the message clearly.
solved myself!!!