[00:58:03] <MirahezeRelay> <wyxn> Is the Rye font supported? [00:58:33] <MirahezeRelay> <wyxn> [1/2] like this should work right [00:58:33] <MirahezeRelay> <wyxn> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1367304151880433795/image.png?ex=681418b9&is=6812c739&hm=5eb1089794a8342cf216810a2a87172601c0ff56f10cf9beb1ef052b7c2dff04& [00:58:43] <MirahezeRelay> <wyxn> but I don't see fonts change :( [00:58:55] <MirahezeRelay> <wyxn, replying to wyxn> Common.css file, at the top [00:59:00] <MirahezeRelay> <wyxn> nothing else modifying font [01:18:15] <MirahezeRelay> <meep567> [1/2] On our wiki’s Google Search console, we’ve seen a trend where our indexed pages spike up like 200 and dwindles down to zero. Then once it reaches zero it spikes again. [01:18:15] <MirahezeRelay> <meep567> [2/2] Any idea why? [02:57:29] <MirahezeRelay> <snowstacked, replying to wyxn> [1/7] have u tried previewing it? [02:57:29] <MirahezeRelay> <snowstacked, replying to wyxn> [2/7] also, if youre on citizen, you can just do [02:57:29] <MirahezeRelay> <snowstacked, replying to wyxn> [3/7] ``` [02:57:30] <MirahezeRelay> <snowstacked, replying to wyxn> [4/7] :root { [02:57:30] <MirahezeRelay> <snowstacked, replying to wyxn> [5/7] --font-family-citizen-base: "Fredoka", sans-serif [02:57:30] <MirahezeRelay> <snowstacked, replying to wyxn> [6/7] } [02:57:31] <MirahezeRelay> <snowstacked, replying to wyxn> [7/7] ``` [03:19:18] <MirahezeRelay> <wyxn, replying to snowstacked> I fixed it, sorry for not doing a followup! [04:03:12] <MirahezeRelay> <_vrm_> [1/2] hi quick question, [04:03:12] <MirahezeRelay> <_vrm_> [2/2] if i have a number from a magic word like 100 and want to subtract a fixed number from it like 25, and display the answer 75, how would i do that? [04:08:15] <MirahezeRelay> <snowstacked, replying to _vrm_> `{{#expr:100 - 25}}` [04:16:02] <MirahezeRelay> <_vrm_> thanks! works [05:48:14] <MirahezeRelay> <lole5309> Is there someone who managed to embed latest github version? [06:12:05] <MirahezeRelay> <gamewatch21> Guys, do you guys know how to make a css as gadget? [07:13:42] <MirahezeRelay> <lole5309> ive made a huge mess with testing the createpage extension, is there a convenient ui to mass select pages for deletion? [07:15:25] <MirahezeRelay> <snowstacked> nuke extension? [07:29:43] <MirahezeRelay> <lole5309> ill try that thanks [14:20:39] <MirahezeRelay> <lole5309> how to stop a wikitable from taking up the entire width if i add in a picture? [14:20:53] <MirahezeRelay> <lole5309> how to restrict width to 25% of the article? [14:21:16] <MirahezeRelay> <snowstacked> `{| style="width: 25%"` [14:21:32] <MirahezeRelay> <lole5309> thx, that easy huh [14:22:24] <MirahezeRelay> <lole5309> nope, the added image blows it out still [14:26:29] <MirahezeRelay> <lole5309> thumb works but is ugly [14:29:41] <MirahezeRelay> <abaddriverlol, replying to lole5309> you can restrict the image size as well: <https://www.mediawiki.org/wiki/Help:Images#Size_and_frame> [14:30:35] <MirahezeRelay> <lole5309, replying to abaddriverlol> is there anything that doesnt need a specified pixel size but instead responds to the zoom and such? [14:31:15] <MirahezeRelay> <lole5309> i guess i use pixels then [14:31:57] <MirahezeRelay> <lole5309> its weird, the wikitable page is mentioning how outdated size in pixels is at every other line, but images apparently dont care [14:35:05] <MirahezeRelay> <gummiel> Yeah I really wish image syntax would allow something other than just px unit. Anything more than a few pixels if size (usually for paddings, margins borders and similar), it is 99% of cases a bad idea to use absolute units like px [16:55:20] <MirahezeRelay> <thebasicperson> [1/2] How would I make my info box push sections down on mobile rather than overlapping with them [16:55:21] <MirahezeRelay> <thebasicperson> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1367544922693173318/IMG_0798.png?ex=6814f8f5&is=6813a775&hm=3f1a9a56ebef9e711f0daa2cb18957df002e2202efe6be13658b94791116a46c& [17:05:14] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [1/9] add the `infobox`class to it, then you can use [17:05:14] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [2/9] ```css [17:05:15] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [3/9] @media screen and (max-width: 800px) { [17:05:15] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [4/9] .infobox { [17:05:15] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [5/9] float: none; [17:05:16] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [6/9] } [17:05:16] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [7/9] } [17:05:16] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [8/9] ``` [17:05:17] <MirahezeRelay> <abaddriverlol, replying to thebasicperson> [9/9] (this prevents the infobox from floating on screens with a width smaller than 800px) [17:05:56] <MirahezeRelay> <thebasicperson> Ah that’s smart [17:06:10] <MirahezeRelay> <thebasicperson> Thanks [17:06:45] <MirahezeRelay> <abaddriverlol> np [17:49:44] <MirahezeRelay> <marshall268> [1/2] What does this mean? [17:49:44] <MirahezeRelay> <marshall268> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1367558616768577576/20250501_204758.jpg?ex=681505b6&is=6813b436&hm=42c2b66c8579994faf7141935e12a5d1ab7d569577bac73d1913438ba108003e& [18:09:07] <MirahezeRelay> <abaddriverlol> somewhere in the code a closing tag is missing [18:09:50] <MirahezeRelay> <abaddriverlol> every opening tag (e.g. `<label>`) should have a closing tag (e.g. `/label`) [20:15:53] <MirahezeRelay> <quartzofterror> [1/3] Is there was a way to have multiple TOCs on a tabber? Basically have what image 1 is on each tab. [20:15:53] <MirahezeRelay> <quartzofterror> [2/3] https://cdn.discordapp.com/attachments/407537962553966603/1367595403482103920/image.png?ex=681527f8&is=6813d678&hm=f4f3fcba6ccb07494ea894b17a88a11bb7d48171c2c23f5c823d891dcb4d778f& [20:15:54] <MirahezeRelay> <quartzofterror> [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1367595403884892311/image.png?ex=681527f8&is=6813d678&hm=02d9684f9729e907e0efacda17a05c833d077f90d4d03a3c5973ea0585ffe60e& [20:31:47] <MirahezeRelay> <originalauthority> No [20:32:18] <MirahezeRelay> <originalauthority> You can change the location with `TOC` but that will remove the other instances [21:27:08] <MirahezeRelay> <kuurubizu81, replying to quartzofterror> you can use subpages instead [21:28:59] <MirahezeRelay> <kuurubizu81> or you can make a custom table of contents [21:30:12] <MirahezeRelay> <quartzofterror, replying to kuurubizu81> Mm Im hesitant on using that because I did want the variants to be easily comparable, Ill look into a custom table of contents though [21:39:50] <MirahezeRelay> <_plasticbottle> Hi! I'm new here! Just wanted to say hi before I dive into making a wiki! [21:42:20] <MirahezeRelay> <pixldev, replying to _plasticbottle> Hiya! [21:42:30] <MirahezeRelay> <pixldev> a:wavey: [22:48:04] <MirahezeRelay> <ashley.cornwall> hey can someone help me [22:48:11] <MirahezeRelay> <ashley.cornwall> i applied a new theme abotu 20 mins ago [22:48:14] <MirahezeRelay> <ashley.cornwall> and its still not changed [23:11:04] <MirahezeRelay> <abaddriverlol, replying to ashley.cornwall> did you change the default skin or your personal one? [23:11:06] <MirahezeRelay> <abaddriverlol> try purging the page affected by this [23:13:58] <MirahezeRelay> <ashley.cornwall, replying to abaddriverlol> defult i think [23:15:10] <MirahezeRelay> <abaddriverlol, replying to ashley.cornwall> could you share a link to the page this is occurring on? [23:15:31] <MirahezeRelay> <ashley.cornwall> its on the whole wiki so ill send u the main page [23:15:35] <MirahezeRelay> <ashley.cornwall> https://kernowwiki.miraheze.org/wiki/Main_Page [23:20:45] <MirahezeRelay> <abaddriverlol, replying to ashley.cornwall> You enabled the Citizen skin but Vector is still the default skin for all users, you can change this at https://kernowwiki.miraheze.org/wiki/Special:ManageWiki/settings#mw-section-styling [23:21:43] <MirahezeRelay> <ashley.cornwall, replying to abaddriverlol> oh thanks [23:22:40] <MirahezeRelay> <ashley.cornwall> how long will it take to chage now [23:22:44] <MirahezeRelay> <ashley.cornwall> change* [23:29:20] <MirahezeRelay> <notebookw2884> I wanted to change my wiki's scope but the person who responded to me, 1108-Kiju, hasn't responded back in 5 days already [23:30:10] <MirahezeRelay> <abaddriverlol, replying to ashley.cornwall> it should change immediately, on pages where it's not changing you can try using the "purge" link in the tools menu to purge them