This question is locked. New answers and comments are not allowed.
I have included the following lines of code in _layout.cshtml
but do not see that the a Text area style is taking effect
but do not see that the a Text area style is taking effect
@(Html.Telerik().StyleSheetRegistrar()
.DefaultGroup(group => group
.Add(
"~/Content/telerik.windows7.min.css")
.Add(
"~/Content/telerik.common.min.css")
.Add(
"~/Content/Site.css")
.Combined(
true)
.Compress(
true)
))
@RenderSection(
"HeadContent", required: false)
Text area style is define in Site.css
textarea.t1
{
font-family:Calibri;
font-size:14pt;
font-weight:bold;
}
Any idea?