Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

http://imgur.com/arAyDXc

I want to do this, however, I do not have access to the master pages or the Look and feel section of my Sharepoint site. I can, however, edit it in Sharepoint designer and manually change CSS there. What tag should I be using to create this. Right now my website just says like Announcements in black, and has a white background. I wish to change the background to blue or something. I'm using sharepoint 2013

share|improve this question
add comment

1 Answer

Try this to change the WebPart header background :

.ms-WPHeader td {
    background-image: -moz-linear-gradient(white, black);
    background-image: -webkit-linear-gradient(white, black);
    background-image: -o-linear-gradient(white, black);
    background-image: linear-gradient(white, black);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF',endColorstr='#000000', GradientType=0);
}
share|improve this answer
 
No dice. I put it in a content editor web part and nothing has happened. I don't have access to the master pages, would there be some way for them to disable all custom css and force their own css? I don't understand why this isn't working, it was simple enough in 2010 –  Thomas Boop Jun 7 '13 at 15:01
 
Oh sorry, this is for SharePoint 2010... –  Cana Jun 7 '13 at 20:35
add comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.