super simple one here, but important nonetheless. When I create a page that’s exclusively markdown, any element that is altered with a markdown tag is displayed in Arial and any text that is unaltered is displayed in Times New Roman (I believe). Is there any way to get the font to be consistent, preferrably Arial?
Not a perfect solution, but if you need the font to be consistent, you can load an external stylesheet. That should override the Markdown funny business. And then using style you should be able to change the font to whatever you want (I think).
Does the stylesheet need to define something specific to make the font consistent or does importing any random external_stylesheet randomly correct this? I have my active stylesheet imported from the /assets folder and importing the chriddyp stylesheet too messes my environment up at this point. Defining
font-family: Arial, Helvetica, sans-serif;
in my own stylesheet did not do the trick for the Markdown either.