Change default list Font Size SharePoint 2013

Copper Contributor

Hi all,

 

How do I change default font size for a people picker column in a SharePoint 2013 list?

 

Using the below CSS I can change font size for all columns, apart for the people picker column.

 

<style>

/* Set font sizes on Header and Cells */

.ms-vh2, .ms-vh
{

font-size:19pt;}

.ms-vb2, .ms-vb
{ font-size:19pt;}

.ms-rtestate-field
{
/*font-family: "Times New Roman", Georgia, Serif;*/
font-size:19pt;
line-height: none}

</style>

 

Thanks 

 

 

 

1 Reply

@Ramchander Pamidimukkala 

This was what I spent all morning looking for!  Thank you for posting this!

Do you know the code to also change the link text colors of the list items?  In developer tools for that section of the list, it provides:

.ms-vb a.ms-listlink, .ms-vb2 a.ms-listlink, .ms-vb-user a.ms-listlink, .ms-vb a.ms-listlink:visited, .ms-vb a.ms-listlink:visited:hover

{color: #444;}

I have entered that into my Snippet Code web part, but changing the color to something else does not change the link text color.

Any guidance is much appreciated!