Hello Adam,
To fix the background color for Web20 skin in version Q2 2009, you should use the following CSS in the head section of your document (marked in yellow):
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<
head
id
=
"Head1"
runat
=
"server"
>
<
title
>Padding</
title
>
<
style
type
=
"text/css"
>
fieldset
{
width: 400px;
height: 400px;
}
/*Fixes background color in IE6 for Web20 Skin*/
.RadForm_Web20.rfdFieldset table.rfdRoundedWrapper_fieldset fieldset,
.RadForm_Web20.rfdFieldset fieldset.rfdFieldset
{
background-image: none !important;
}
/*Fixes buttons text color in IE6 for Web20 Skin*/
*html .RadForm_Web20 a.rfdSkinnedButton,
*html .RadForm_Web20 .rfdSkinnedButton button,
*html .RadForm_Web20 .rfdSkinnedButton input.rfdDecorated,
.RadForm_Web20.rfdButton a.rfdSkinnedButton,
.RadForm_Web20.rfdButton a.rfdSkinnedButton *
{
color: #fff;
}
</
style
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
telerik:RadFormDecorator
ID
=
"RadFormDecorator1"
runat
=
"server"
DecoratedControls
=
"All"
Skin
=
"Web20"
/>
<
div
style
=
"width: 400px;"
>
<
fieldset
>
<
legend
>White BGR for IE6</
legend
>
<
asp:Button
ID
=
"Button1"
runat
=
"server"
Text
=
"Rechercher"
ValidationGroup
=
"Groupe1"
/>
<
asp:Button
ID
=
"Button2"
runat
=
"server"
Text
=
"Effacer"
CausesValidation
=
"false"
/>
</
fieldset
>
</
div
>
</
form
>
</
body
>
</
html
>
I have also fixed the buttons text-color to be white instead black, the code is marked in orange. In the latest version of Telerik AJAX RadContorls Q2 2010, this problem does not exist.
Attached is
fieldsetie6.gif showing the result from the above code in the browser.
Regards,
Bojo
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items