Hi,
When I declare the input for a DropDownList using inline style the width is set accordingly:
When I use an external style sheet it does not:
Is there any way of using an external style sheet with Kendo UI? Please note that I do not want to use javascript to set the width.
Thanks.
When I declare the input for a DropDownList using inline style the width is set accordingly:
<
input
id
=
"Service"
name
=
"Service"
style
=
"width:900px"
/>
When I use an external style sheet it does not:
#Service
{
width: 600px;
}
Is there any way of using an external style sheet with Kendo UI? Please note that I do not want to use javascript to set the width.
Thanks.