Support how to change font

HaXorx

Registered
  1. Create a directory on the root folder or upload your custom font in any existing folder.
  2. Open the extra.less and customize the bellow codes.
  3. Apply the font family anywhere you want.
CSS:
@font-face {
  font-family: lipi;
  src: url(/media/fonts/SolaimanLipi.woff2); // Here will be the URL of your font. //
  font-weight: 400;
}
/* I am applying it to post description */
.message-body {
  font-family: lipi;
  font-size: 14px;
}
 
Back
Top Bottom