How do I make WebGroupBox have rounded corners? I'm using the asp panel and the toolkit extender to round the corner but its effect is not quite the same as simple panel with headers and rounded corners
THanks
Hi,
border-radius is not a valid CSS 2.1 element. It does not work with IE8.
Do you have any work around?
-Kally
Hello Kally,
You can make them rounded like this:
.classOne
{
-moz-border-radius: 15px;
border-radius: 15px;
}
<igmisc:WebGroupBox ID="WebGroupBox1" runat="server" StyleSetName="" Text=""
TitleAlignment="Left" CssClass="classOne">
</igmisc:WebGroupBox>
Define classOne and aply it to the GroupBox.
I hope this helps.
Sincerely,
Georgi Sashev
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support