Question

On Userprofile myPage (Person.aspx), Some properties are show. But for some other properties We need to click on "Show More/Show less" link to view more properties. I want to remove this "Show More" link. How i do this: See below picture:

enter image description here

Was it helpful?

Solution

Add the following CSS:

.ms-profile-toggleDetails {
    display:none;
}

.ms-profile-hiddenDetails {
    display:block !important;
    overflow:visible !important;
}

This will show all the information by default and hide "Show More" link button.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top