@Taika said in The Descent MUX:
I could use the help of a wiki person to install CSS or walk me through the process - there's been offers of help, but without CSS, the code they have isn't compatible.
Do you mean the CSS extension for Mediawiki? If so, go here: https://www.mediawiki.org/wiki/Special:ExtensionDistributor/CSS
Once you download that, you'll want to extract the contents of the folder to your Extensions folder in your media wiki directories. You can do this in a couple ways. You could put the tarball downloaded from the site into your extensions folder (found by using an FTP client to go to your provider, then going into www/mediawiki1.27/extensions -- note, if you've renamed the mediawiki folder to something else, it'll obviously have a different name), and extracting from there using shell commands. Alternately, you can extract locally and then upload the contents of the archive into that same folder. Without knowing what your architecture looks like, I can't tell you exactly where to go, but the extensions folder is front and center in the main mediawiki directory.
After that, go into the main wiki directory and find a file called LocalSettings.php. You'll want to scroll down to the section where it says # Add Configuration options below (usually at the bottom of the file) and copy and paste this:
require_once "$IP/extensions/CSS/CSS.php";
After that, save and close the LocalSettings.php file. PHP takes effect immediately. You may need to clear your cache to use the extension on pages and get it to work for you. Following that, you can use the following template on your pages (just as an example, you can put whatever CSS you want):
{{#css:
b {
color: slategrey;
font-size: 1.6em;
font-family: Palatino, serif;
}
}}
Edit to add: clarified why you'd need to clear your cache.