This is a migrated thread and some comments may be shown as answers.

RadFormDecorator not decorating LEGEND in IE6

1 Answer 13 Views
FormDecorator
This is a migrated thread and some comments may be shown as answers.
Abhijit Shetty
Top achievements
Rank 2
Abhijit Shetty asked on 20 Oct 2012, 10:26 AM
Hi,

I have issue where CSS rules are not getting applied to LEGEND of fieldset in IE6 with RadFormDecorator as can be seen in Image attached.

PFA (IE-6 Legend and IE-7-8 Lened)

1 Answer, 1 is accepted

Sort by
0
Accepted
Bozhidar
Telerik team
answered on 22 Oct 2012, 01:48 PM
Hi,

I will investigate more deeply the issue, but for now you could use the following fix:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
    <style type="text/css">
        .RadForm label,
        .RadForm legend {
            _font-family: "Segoe UI" ,Arial,Helvetica,sans-serif !important;
            _font-size: 12px !important;
        }
         
         
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="sm" runat="server" />
    <telerik:RadFormDecorator ID="rfd1" runat="server" DecoratedControls="All" />
    <fieldset>
        <legend>Test title</legend>
        <input type="text" />
    </fieldset>
    </form>
</body>
</html>


Regards,
Bozhidar
the Telerik team
Explore the entire set of ASP.NET AJAX controls we offer here and browse the myriad online demos to learn more about the components and the features they incorporate.
Tags
FormDecorator
Asked by
Abhijit Shetty
Top achievements
Rank 2
Answers by
Bozhidar
Telerik team
Share this question
or