06.08.2025, 07:36
New visu is quite similar to old visu and Mosaic. What exactly are you struggling with?
You can add fonts via CSS.
One option is to load the font file directly. It can be a local file as well, uploaded via old visu fonts section or via ftp to public directory. But a local file won't work over LM cloud.
Another solution is to use Google fonts:
You can add fonts via CSS.
One option is to load the font file directly. It can be a local file as well, uploaded via old visu fonts section or via ftp to public directory. But a local file won't work over LM cloud.
Code:
@font-face {
font-family: "Bitstream Vera Serif Bold";
src: url("https://mdn.github.io/shared-assets/fonts/VeraSeBd.ttf");
}
body, input, select, option, textarea {
font-family: "Bitstream Vera Serif Bold", serif;
}
Another solution is to use Google fonts:
Code:
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body, input, select, option, textarea {
font-family: "PT Sans", sans-serif;
}