Xenllium
Joined 15 November 2018
→Backslash: Re |
→Backslash: fix |
||
Line 201: | Line 201: | ||
: NO!! I NEVER accept this suggestion!! Using tags such as <nowiki><span style="font-family:'Arial',sans-serif"></nowiki> is indispensable for preventing backslashes to display as another character (such as a yen sign) despite font settings!! COULD you deal it!? --[[User:Xenllium|Xenllium]] ([[User talk:Xenllium|talk]]) 01:29, 27 April 2025 (UTC) | : NO!! I NEVER accept this suggestion!! Using tags such as <nowiki><span style="font-family:'Arial',sans-serif"></nowiki> is indispensable for preventing backslashes to display as another character (such as a yen sign) despite font settings!! COULD you deal it!? --[[User:Xenllium|Xenllium]] ([[User talk:Xenllium|talk]]) 01:29, 27 April 2025 (UTC) | ||
:: If it doesn't work through browser settings, then I wonder if some user CSS code could do it. For example, I have my own user CSS page here: [[User:Fredg999/common.css]]. I think the stuff that's currently in there isn't relevant anymore because it was implemented site-wide since then, but it should give you an idea of how it works, at least. You might be able to define a CSS rule that sets the default font to Arial, which should work the same as a span tag, except it would be applied everywhere automatically. See also [[Help:Advanced formatting of wiki pages]]. That said, I think searching for a workaround at the browser level has more chance to work quickly. --[[User:Fredg999|Fredg999]] ([[User talk:Fredg999|talk]]) 03:29, 27 April 2025 (UTC) | :: If it doesn't work through browser settings, then I wonder if some user CSS code could do it. For example, I have my own user CSS page here: [[User:Fredg999/common.css]]. I think the stuff that's currently in there isn't relevant anymore because it was implemented site-wide since then, but it should give you an idea of how it works, at least. You might be able to define a CSS rule that sets the default font to Arial, which should work the same as a span tag, except it would be applied everywhere automatically. See also [[Help:Advanced formatting of wiki pages]]. That said, I think searching for a workaround at the browser level has more chance to work quickly. --[[User:Fredg999|Fredg999]] ([[User talk:Fredg999|talk]]) 03:29, 27 April 2025 (UTC) | ||
You can easily fix this by editing your [[User:Xenllium/common.css|user CSS]] to: | |||
<syntaxhighlight lang="css"> | |||
body { | |||
font-family: Arial; | |||
} | |||
</syntaxhighlight > | |||
I tested for myself to verify that it works. | |||
– [[User:Sintel|Sintel🎏]] ([[User_talk:Sintel|talk]]) 10:08, 27 April 2025 (UTC) |