I need to change the text color of the hyper links when someone includes a weblink in the chat - right now it is showing up yellow. Tried to change the css to COCOCO but it does not work.
Need step-by-step instructions on how to change font color - this is really the only thing needing to be changed asap.
Thanks!
Kitty Jean
(sorry I am not good when it comes to this coding and usually have others do it for me :( )
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
COCOCO it means nothing than a random color. C0C0C0 is the color code for SILVER. Just try "silver" or whatever color you'd like (aqua, green, marron, brown, red, blue, white, black, fuchsia, aso)
This are the blocks in style.css.php which control the links' look:
A
{
text-decoration: none;
color: #e6e68f;
font-weight: 600;
}
I got it figured out. I do have the plus version and I had found what I needed at 5:00 this morning - thank you also for posting as I am sure others need the information as well :) - good day!!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You're welcome.
And I'm sorry my reply was so late, but I live ... what? 8-9 hours ahead from your place? (I just got home from my regular job :p) Good morning :)
Ciprian
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I need to change the text color of the hyper links when someone includes a weblink in the chat - right now it is showing up yellow. Tried to change the css to COCOCO but it does not work.
Need step-by-step instructions on how to change font color - this is really the only thing needing to be changed asap.
Thanks!
Kitty Jean
(sorry I am not good when it comes to this coding and usually have others do it for me :( )
COCOCO it means nothing than a random color. C0C0C0 is the color code for SILVER. Just try "silver" or whatever color you'd like (aqua, green, marron, brown, red, blue, white, black, fuchsia, aso)
This are the blocks in style.css.php which control the links' look:
A
{
text-decoration: none;
color: #e6e68f;
font-weight: 600;
}
A:hover, A:active
{
color: #FF9900;
text-decoration: underline;
}
A.user, A.user:active
{
text-decoration: none;
color: #CCCCFF;
font-weight: 600;
}
A.sender, A.sender:active
{
text-decoration: none;
color: <?php echo($CD); ?>;
font-weight: 600;
}
And this are in start_page.css.php:
<?php
if (isset($SpecialFont))
{
?>
A.ChatFonts
{
<?php if (isset($FontFace)) echo($FontFace); ?>
text-decoration: underline;
color: #FF0000;
font-weight: 600;
}
};
?>
A.ChatLink
{
<?php if (isset($FontFace)) echo($FontFace); ?>
text-decoration: underline;
color: #FFFFFF;
font-weight: 600;
}
A.ChatLink:hover, A.ChatLink:active
{
<?php if (isset($FontFace)) echo($FontFace); ?>
color: #FF9900;
text-decoration: none;
}
A.ChatReg
{
<?php if (isset($FontFace)) echo($FontFace); ?>
text-decoration: underline;
color: #4682b4;
font-weight: 800;
}
A.ChatReg:hover,A.ChatReg:active
{
<?php if (isset($FontFace)) echo($FontFace); ?>
color: #FF9900;
text-decoration: none;
}
...
A.ChatCopy, A.ChatCopy:active
{
font-family: helvetica, arial, geneva, sans-serif;
color: #FFFFFF;
}
Next time, provide a link to your chat and, most important, the version you use. The codes I show you are in the Plus version.
Ciprian
I got it figured out. I do have the plus version and I had found what I needed at 5:00 this morning - thank you also for posting as I am sure others need the information as well :) - good day!!
You're welcome.
And I'm sorry my reply was so late, but I live ... what? 8-9 hours ahead from your place? (I just got home from my regular job :p) Good morning :)
Ciprian