Problem with change of code on text fonts

Hi,

I been trying to do some customization on my shopify with changingen the font style in the code, but it seems like some text parts is still the font style. Has anyone experiencing something similiar and might know how to change it?

LINK :

https://5beeo0ndr0l95tuw-56470536270.shopifypreview.com

Hello @Dispomal
You have not added a font family in description.

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.image-with-text__text p { font-family: 'myFont'; } .rich-text__text.rte p { font-family: 'myFont'; }

It seems like i fixed it now but for some reason it is the wrong font i think, are you able to take a look on that?

But you have used such font family most of the places on the home page. That’s why I added this font.

Yeah i made the code like this now:

}
body {
font-family: myFont; src: url(‘https://cdn.shopify.com/s/files/1/0564/7053/6270/files/IBMPlexMono-Regular_1.ttf?v=1691179646’); }
span {
font-family: myFont !important;

Which fixed the problem of the text not changing font style at all, but apparently the font style right now is a font called “IBMPlexMono-Medium” when it should be one called IBMPlexMono-Regular

So you will have ibmplesmono-regular font family, right?

Yes thats the one i want, is there any chance you could help me with? Appreciate the help so far alot aswell!