How To Hide the SharePoint 2010 Web Part Checkbox
This morning I came across this post in the SharePoint 2010 forums. Although it’s nothing critical, it’s good to know the workaround!
Issue
How to hide the checkbox that is available for each Web Part in SharePoint 2010.
Resolution using CSS
Add the following CSS to your Master Page
.ms-WPHeaderTdSelection
{
display: none;
}
Resolution using OOTB available options
- Display the Web Part without a title
- Add a Content Editor Web Part right before the list Web Part, adding the title of the List Web Part to the Content Editor Web Part.
- I am sure it can be done! :) I am a no code guy ;)...
- Can this be done with code?; For example when the webpart is...
- Fab 40 for MOSS 2010 are now available http://microsofttec...
- i was try to remove site with "Remove-SPSite http://....." ...
- I am unable to do this in Outlook2007 :( .. I have tried eve...
- Hi, I need to ask something that regard the lookup field for...
- how do I download windows live hotmail plus to gain more MB'...
- What I did was to extend the webapplication to port 80 inste...
- I have a question... If i extend the web application to the ...
- in part 11 when i submit the info i get the error "The va...








Luis said,
Wrote on July 16, 2010 @ 11:00 am
Can this be done with code?; For example when the webpart is loaded
I dont like the idea of touching SP2010 Master pages!
Alpesh said,
Wrote on August 2, 2010 @ 2:17 pm
I am sure it can be done!
I am a no code guy