Mschulter1325 (talk | contribs)
Line 1,000: Line 1,000:


Yes, it's corrected, and I just put some final touches on tidying up the alignment, so it should be ready to go on the article's page. Many thanks for your assistance! [[User:Mschulter1325|Mschulter1325]] 04:20, 15 November 2022 (UTC)
Yes, it's corrected, and I just put some final touches on tidying up the alignment, so it should be ready to go on the article's page. Many thanks for your assistance! [[User:Mschulter1325|Mschulter1325]] 04:20, 15 November 2022 (UTC)
== Add HEJI font to CSS ==
Hi Xenwolf,
I'd like to add a bit of code to [[MediaWiki:Common.css]] so that we can use the HEJI2Text font on the wiki (instead of relying on a bunch of SVG images, namely), but I don't have admin access so I can't do it myself. Do you think you could add it?
<pre><nowiki>
/* use HEJI2Text font if class="heji" */
@font-face {
  font-family: HEJI2Text;
  src: url(https://plainsound.org/fonts/HEJI2Text.otf);
}
.heji {
  font-family: HEJI2Text;
}
</nowiki></pre>