By Antonio Simmons on Monday, 07 April 2014
Posted in General Issues
Replies 3
Likes 0
Views 634
Votes 0
Does anyone have the code to change the statues update text "Share what's new" color?
Hello Antonio Simmons,

Sorry for late reply to this,
Is it possible provide us Joomla backend, FTP access and some screenshot which link ( change the statues update text "Share what's new" color ) you referring to? Please advise.
·
Monday, 07 April 2014 14:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes
·
Monday, 07 April 2014 17:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Antonio,

Try these codes and see if it works for you. You need to change the color accordingly.


body div#fd.es .mentions textarea::-webkit-input-placeholder {
/* Setting placeholder text color in webkit browser */
color: red;
}
body div#fd.es .mentions textarea:-moz-placeholder {
/* Setting placeholder text color in FF 4-18 */
color: red;
}
body div#fd.es .mentions textarea::-moz-placeholder {
/* Setting placeholder text color in FF 19+ */
color: red;
}
body div#fd.es .mentions textarea:-ms-input-placeholder {
/* Setting placeholder text color in IE 10+ */
color: red;
}

body div#fd.es .mentions textarea {
/* Setting textarea text color during user writing their story. OPTIONAL */
color: red;
}
·
Monday, 07 April 2014 18:00
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post