I am attempting to brand a SharePoint page and it requires me to edit the web part headers so that they have a gradient background. I have a gradient image that I am using but I am running into issue with whitespace and gaps in the border depending on the browser I use. See the two images below. The first one was taken in IE8 and the second in Firefox 4.0. Both have the whitespace issue, but only in Firefox are there gaps in the top and bottom borders.

IE8: http://imageshack.us/photo/my-images/833/whitespace.jpg/

FF 4.0: http://imageshack.us/photo/my-images/13/bordergaps.jpg/

Here is the code I am using:

.TopLeftZone .ms-WPHeader td {
background-image:url('[link to my image]');
background-repeat:repeat-x;
border-top: 1px #6a7f10 solid;
border-bottom: 1px #6a7f10 solid;
}

.TopLeftZone .ms-wpTdSpace {
border-left: 1px #6a7f10 solid;
border-bottom: 1px #6a7f10 solid;
}

.TopLeftZone .ms-WPTitle, .ms-WPTitle a {
font-family: verdana;
color: white;
font-weight: bold;
}

I have specified a web part zone with a div class of TopLeftZone so that the style will impact all web parts in that zone. I would like to fill the whitespace with the border color and get rid of those gaps as well in Firefox if possible.

Any help would be greatly appreciated. Thanks in advance!

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.