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

dropdown Checkbox font style

1 Answer 95 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
L
Top achievements
Rank 1
L asked on 17 Sep 2014, 04:52 PM
hi

How do i make the font style to be normal instead of bold? I am using bootstrap and here is my code: and an attached picture. The demo from your side look good but not mind http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/checkboxes/defaultcs.aspx

     <div class="form-group">
                 <telerik:RadComboBox ID="RadComboBox1" Style="width:50%" runat="server" CheckBoxes="True">
                     <Items>
                         <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem1" Value="RadComboBoxItem1" />
                         <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem2" Value="RadComboBoxItem2" />
                         <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem3" Value="RadComboBoxItem3" />
                         <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem4" Value="RadComboBoxItem4" />
                         <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem5" Value="RadComboBoxItem5" />
                     </Items>
                 </telerik:RadComboBox>
                 &nbsp;<asp:Button id="btnPost" runat="server"  Text="&nbsp;Share it&nbsp;" CssClass="btn btn-primary btn-sm" />          

             </div>

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 22 Sep 2014, 07:30 AM
Hello,

You can try to force the normal font-weight of the items with the CSS below:
<style type="text/css">
     .rcbItem, .rcbHovered  {
     font-weight:normal !important;
     }
 </style>

Hope this will help you solve the issue.

Regards,
Plamen
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
DropDownList
Asked by
L
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Share this question
or