how to use custom fonts in lb nextgen
			
			General Discussion
		
2
Posts
2
Posters
678
Views
- 
To use custom fonts in LB NextGen, you first need to upload the font files in a web-compatible format such as WOFF, WOFF2, TTF, or OTF to your server or assets folder. Once uploaded, define the font in your CSS file using the @font-face rule. For example, you can add the following code: @font-face { 
 font-family: 'CustomFont';
 src: url('path-to-your-font-file.woff2') format('woff2'),
 url('path-to-your-font-file.woff') format('woff');
 font-weight: normal;
 font-style: normal;
 }
 body {
 font-family: 'CustomFont', sans-serif;
 }