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

[Solved] Telerik MVC controls looks large

0 Answers 62 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Chamara
Top achievements
Rank 1
Chamara asked on 20 May 2013, 04:06 AM
Just started using Telerik MVC controls. i have added the controls to my view and the text is and control looks bit large. why the default size and fonts are so large? how can i correct them.

check below for preview.

http://www.freeimagehosting.net/egzex

<div class="editor-label">
                <%: Html.LabelFor(model => model.JobType) %>
            </div>
           
            <div class="editor-field">

             <%= Html.Telerik().DropDownListFor(model => model.JobType)
              .BindTo(new SelectList(Model.lstJob, "JobName", "JobName"))%>
                <%: Html.ValidationMessageFor(model => model.JobType) %>
            </div>

            <div class="editor-label">
                <%: Html.Label("Called In At") %>
            </div>
            <div class="editor-field">
             
                <%: Html.Telerik().DateTimePickerFor(model=>model.CalledInAt) %>
                <%: Html.ValidationMessageFor(model => model.CalledInAt) %>
            </div>


In the master page i have added the following.

  <% Html.Telerik().StyleSheetRegistrar().DefaultGroup(group => group.Add("telerik.common.css")
           .Add("telerik.vista.css")).Render(); %>

  <% Html.Telerik().ScriptRegistrar().Render(); %>

have i missed any style files?
Tags
General Discussions
Asked by
Chamara
Top achievements
Rank 1
Share this question
or