خط عائلة الخط لا يعمل

It drives me crazy the fact that I cannot change the font family. I select Inter (or other font family) as my font family and there are no changes, I can’t change the Arial font family.

I also tried Inter with the CSS method with the @import from Google Font. NOT WORKING! How do I actually change the font family?

Much appreciated.

Obligatory silly question. Did you reload the page?

Can you select any text of your forum (like a post contents) and see what font-family is set to, using your browser dev tools ?

إعجاب واحد (1)

Please try clearing the cache or performing a hard refresh of the browser; it will most likely work.

I did all of that. I cannot get rid of Arial.

Thanks @MihirR I did that, I do it all the time. Still Arial everywhere…

To check why it’s not working, you can add this to your Edit HTML/CSS and see if the new font appears:

body {
  font-family: 'Times New Roman', serif !important; 
}

h1 {
  font-family: 'Courier New', monospace !important;
}

That’s weird.

What does it look like when using safe mode (the safe mode should keep the custom font)?

Is there any error in the js console or network tab?

إعجاب واحد (1)

I tried this yesterday and It works only for H1.

OMG… :man_facepalming:

It’s a fresh Discourse install. I’m trying do figure this issue.

Yeah, it’s for h1. If you want it for everything, you can use this:

* {
  font-family: 'Times New Roman', serif !important; 
}

Not working. As you can see above it seems that there are some http problem, I have no idea why since everything else is https.

You may want to diagnose why the font is served over http instead of https.

Is your Discourse a standard install?

إعجابَين (2)
* {
  font-family: 'Inter', sans-serif !important; 
} 

See, if the H1 works, this should definitely work too.

You can try running: ./launcher rebuild app

Also, are you using any themes? (I assume not, since you mentioned it’s a fresh install, so it’s free of themes and plugins.)

However, I tested some fonts, and they work well on my end, so it’s not an issue on Discourse’s side.

By any chance, are you using a reverse proxy?

Hello :wave:

If so, the force_https site setting is automatically enabled. This is a hidden site setting that you can change in the rails console. It might not be enabled somehow :thinking:

Give it a try :slightly_smiling_face:

cd /var/discourse
./launcher enter app
rails c
SiteSetting.force_https=true
exit

6 إعجابات

I’m new to Discourse, installed it via Docker / Github. I have no idea what Standard means.

Yes, I use reverse proxy because I have Fastpanel. Fastpanel and Discourse use the same ports, so I had to use reverse proxy.

إعجاب واحد (1)

Oh my god! It worked!!!
Thank you so much, you saved me!!

Much appreciated @Don !!!

إعجابَين (2)

There’s a link in my post, “standard install” automatically links to the topic that explains what it is :slight_smile:

To elaborate on what Don said, the force https was one available in Discourse admin settings, but not anymore as HTTPS has been enabled by default on Discourse for a long time now (like, 2 years maybe?). So, if needed, this now hidden setting must be enabled via the command line for example.

I suppose :thinking: using a reverse proxy makes your Discourse not a standard install and may have caused the issue you faced (can’t know for sure).

Anyway, enjoy Discourse :discourse: :partying_face:

3 إعجابات

Depends of reverse proxy how it talks with a backend. Varnish, if not Enterprise, doesn’t use SSL after termination and that’s why reverse proxy must send something like proxy_set_header X-Forwarded-Proto https;.

But good to know I have to go to hidden settings next time I use Varnish between Nginx and Discourse (plus something else, because otherwise it would be just stupid in my scale).

Or am I totally misunderstanding what forcing means now?

إعجابَين (2)

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.