Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FieldSet background color

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>
like image 628
user1046415 Avatar asked Apr 10 '26 01:04

user1046415


1 Answers

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

like image 116
Praveen Dabral Avatar answered Apr 11 '26 18:04

Praveen Dabral



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!