BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Andrew,
Thanks for using Syncfusion products.
We don’t have Themestudio support for our EJMVC control and we only have support for Classic controls. We can customize the css for EJ MVC controls using “CssClass” api. We have specify a class name for “CssClass” property as shown in the following code snippet.
<code>
@Html.EJ().Menu("syncfusionProducts").Items(items =>
{
items.Add().Url("#").Id("Jobs").Text("Jobs").Children(child =>
{
child.Add().Url("").Text("Live Jobs");
child.Add().Url("").Text("Job History");
child.Add().Url("").Text("All Jobs");
child.Add().Url("").Text("Jobs today");
child.Add().Url("").Text("Jobs last 60 days");
});
}).Width("100%").CssClass("vista")
</code>
After setting CssClass, we have to apply styles to the class in the style section as shown below.
<code>
.vista {
background:#dd7b80;
}
.vista.e-horizontal .e-list > a,
.vista.e-horizontal .e-list:hover > a {
color: #c75e5d;
}
. . .
</code>
We can customize the style according to our need. We have prepared the sample based on your requirement and the same can be downloaded from the following location.
http://www.syncfusion.com/uploads/user/forum/119558/ze/MenuwithVista-530752315
Please let us know if you have further queries.
Regards,
Saranya.S
Hi Andrew,
Thanks for your update.
Please let us know if you have any other queries.
Regards,
Saranya.S
Hi Andrew,
Thanks for using Syncfusion products.
We can customize the header and footer of the grid by using specific classes of the grid and applying the styles based on our requirement.
We have created a sample and the same can be downloaded from the below location
Sample Link: http://www.syncfusion.com/downloads/support/directtrac/119558/CustomCss-1486435401.zip
Please refer the below Knowledge base link for more information on customizing the grid appearance.
KB Link: http://www.syncfusion.com/kb/5172/how-to-customize-grid-appearance-using-custom-css
Please let us know if you have any concerns.
Regards,
Isuriya R