Hi!
I want to clean up the User Profile page by hiding everything except the User details. I have played around the User roles and Permissions for a while, permitting block viewing etc. However, the following fields are still there:
- Course details
- Miscellaneous
- Reports
- Login activity
Then I applied the CSS, which did not work either:
- .node_category:nth-child(2) { display: none; }
- .node_category:nth-child(3) { display: none; }
- .node_category:nth-child(4) { display: none; }
- .node_category:nth-child(5) { display: none; }
The only thing that worked was coloring these elements transparent. But this is a bad solution, of course.
- .node_category:nth-child(2) { color: transparent; }
- .node_category:nth-child(3) { color: transparent; }
- .node_category:nth-child(4) { color: transparent; }
- .node_category:nth-child(5) { color: transparent; }
What else could I try out?
Please, help.