Font question
Since I answered my last question myself, here's another one:
Is it possible to specify the font used for specific fields? I saw code for applying a style, but although it allows you to specify a font color, it doesn't seem to have a place to specify the actual font.
TIA for pointing me to the right resources to learn about this.
2 replies
-
This thread might help you. It's not perfect and if you have any questions feel free to ask.
-
zenmom There is a simple way to change fonts and styles using html tags, but this only works on formula fields. Example:
let result := "This is a test";
html("<style>
.myDiv {
border: 5px outset red;
background-color: lightblue;
text-align: center;
font-family:'Courier New';
font-size:30px;
}
</style>
<div class=myDiv>" + result + "</div>")
Content aside
- 2 yrs agoLast active
- 2Replies
- 84Views
-
3
Following