I am trying to change some of the text anyone know the CSS class to change these? Thanks,
1 Answer
For the text at the top the css rule is
td.ms-list-addnew.ms-textXLarge.ms-list-addnew-aligntop.ms-soften {
color: red;}
It inherits the color defined by the class ms-soften
For the columns you can use this rule
tr.ms-viewheadertr.ms-vhltr span {color: red;}
-
+1 Thanks, columns worked great. but this did not work: td.ms-list-addnew.ms-textXLarge.ms-list-addnew-aligntop.ms-soften { color: red;} Any suggestions?Aaron– Aaron2017-02-08 00:24:27 +00:00Commented Feb 8, 2017 at 0:24
-
I got the css class from SharePoint online, it might be different on other version of SharePoint. To know exactly what are the classes you can use the developer tools that are included in the browsers. Check this article, it will save you a lot of time. developers.google.com/web/tools/chrome-devtools/inspect-stylesJoao Ferreira– Joao Ferreira2017-02-08 10:11:58 +00:00Commented Feb 8, 2017 at 10:11

