Out of the box, the SharePoint 2010 User Profile page uses a bit of JavaScript to truncate the user’s info like Email, School etc. with a “more information” hyperlink that can be clicked to show all the info. The user’s description text is also similarly semi-hidden on page load.
The following quick CSS hack can make both these detail areas fully visible by default, and also hide the “more information” / “hide information” hyperlink”:
Code Snippet
- #ctl00_PlaceHolderMain_ctl11_showHideLink
- {
- display: none;
- }
- .ms-contactcardtext3
- {
- display: block !important;
- overflow: visible !important;
- }
Thx to Keith Tuomi.
Geen opmerkingen:
Een reactie posten