FieldSet background color

user1046415 picture user1046415 · Apr 10, 2013 · Viewed 38k times · Source

I am trying to set a background color for a fieldset in Telerik with the below code.

Can someone point me in right direction, or have any other ideas?

.RadForm_Office2007.rfdFieldset fieldset
  { 
  border: solid 1px #080808;
   background-color:yellow !important;

    }

 <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" 
  DecoratedControls="Fieldset"  Skin="Office2007"/>

 <fieldset style="float: left; width: 280px;">
<legend>Grid
</legend>     
<telerik:RadTextBox runat="server"></telerik:RadTextBox>

</fieldset>

Answer

Praveen Dabral picture Praveen Dabral · Apr 10, 2013

You can set the background color as

<fieldset style="float: left; width: 280px; background-color:red;">

you can use color codes for setting background color like this

<fieldset style="float: left; width: 280px; background-color:#999999;">

you can visit http://www.colorpicker.com/ for finding color codes