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]](https://camo.mybb.com/2b2b1001341ae3a93a2369be6f22d030891d0085/687474703a2f2f777777332e70696374757265707573682e636f6d2f70686f746f2f612f343833353030312f696d672f343833353030312e6a7067)
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]](https://camo.mybb.com/ae67cc61fb5a987c4effa33cf596c5f95ebc4e5d/687474703a2f2f777777322e70696374757265707573682e636f6d2f70686f746f2f612f343833353233302f696d672f343833353233302e6a7067)
My username and subject is still in white. I want in dark. so i can read the message clearly.
solved myself!!!