Reputation: 390
I am creating a form in an RTL language in Form-io. I am aware that there's a specific element called HTML element that can be assigned attributes. Attributes can be defined as below:
| **key** | **value** |
|---------|----------|
| dir | rtl |
| align | right |
But when I try adding a font-family
attribute, it won't work. I have also tried modifying the custom CSS by adding a class name, say sample
and the class style definition as below:
@font-face {
font-family: 'Vazirmatn-Black';
src: url('https://github.com/rastikerdar/vazirmatn/blob/master/fonts/ttf/Vazirmatn-Black.ttf');
}
.sample {
font-family: 'Vazirmatn-Black';
}
It doesn't work. Any ideas?
PS: Keep the solution simple because it is going to be applied on every single element in the forms.
Upvotes: 0
Views: 128