We are looking for a solution to have rounded corners gradient on web part headers in Asp.net. Till now we are able to get the rounded corned with middle section filled with color, but need a solution to repeat the gradient image only on the center section of header (without overwriting the corners).
It is working in Mozilla but NOT in IE
<style>
.PartTitleStyle { /background-color:#003399;/ height:25px; font-family:Arial, Helvetica, sans-serif; font-size:8px; /padding:0px 0px 5px 10px;/
color:#fff;
background-image:url('/Images/bg_top_middle.gif');
background-repeat: repeat-x;
background-position: center;
width: 93px;
}
.PartTitleStyle table
{
background-image:url(/Images/boxHeaderTopRightBlue.gif);
background-repeat: no-repeat;
background-position: right top ;
padding-right: -10px;
}
.PartTitleStyle tr { background-image:url(/Images/boxHeaderTopLeftBlue.gif); background-repeat: no-repeat; background-position:left top ; }
.PartTitleStyle table td { padding:10px 10px 0 10px;
}
BorderColor="White "
DragHighlightColor="Red"
PartStyle-CssClass=""
PartTitleStyle-CssClass="PartTitleStyle"
PartChromeStyle-BorderStyle="None"
MenuPopupStyle-CssClass=""
HeaderStyle-ForeColor="White"
>
