Developer Required for Website Customization

If you’re looking for some help, it’s important to provide as much context as possible so that people are able to assist you. Try to always mention: hello, I was working with a developer, and unfortunately, the developer is busy with other stuff, and not available to work anymore, Is there, anyone who can perform few customizations on my website, I can pay through BTC

  • What’s your URL? This is the easiest way for others to debug your issue https://muslims.community/
  • What version of Ghost are you using? Latest
  • What configuration? Font Installation
  • What browser? Chrome
  • What errors or information do you see in the console? I want to install Local Font, I did everything at my end but unable to install it
  • What steps could someone else take to reproduce the issue you’re having? Someone can do this for me, and i can pay him

Hey @Ali_Raza

You might be able to do this with a bit of code injection.

<style>
/* if you're locally loading the font */
@font-face {
	font-family: 'Font';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('/path/to/font.woff2') format('woff2');
}
</style>

<!-- or if you use something like Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<style>
html, body {
  font-family: 'Roboto', sans-serif;
}
</style>
1 Like