Maybe one of the css and API wizs here know how to do this.
Im trying to reference an external font for my <div> direct chat sends. But since you cannot do proper stylesheet code in API (or I cannot find a way) I cant work out how to do this.
For the example to call an external font you need:
Im trying to reference an external font for my <div> direct chat sends. But since you cannot do proper stylesheet code in API (or I cannot find a way) I cant work out how to do this.
For the example to call an external font you need:
@font-face { font-family: SomeFont; src: url(http://thatsite.com/Thisfont.woff); }and then do such as:
<div style='font-family: SomeFont; font-size: 9pt;(......)Is there a way to do the @font-face with inline css so API takes it. Or a way to define the above within the API so it works correctly?