SO I run and mod a Deltarune AU wiki (Monster Academy) and have no idea how to add a staff page to showcase our team so far (for reasons). Could somebody please help me?
Uhhh random image:
SO I run and mod a Deltarune AU wiki (Monster Academy) and have no idea how to add a staff page to showcase our team so far (for reasons). Could somebody please help me?
Uhhh random image:
Is there a specific look you're going for?
Here are examples of what you could do:
^the SOAP one isn't bad, but I was kinda just gonna ask if somebody could do it like the Dandy's World wiki staff thingy
You can copy-paste the code from there (and credit where you got the code from).
Additional templates you would have to copy are Template:User Avi and its script User Avatar Finder.
Thanks!!
Btw, know how to add color to names on wiki's? (sorry if im asking things too much lol)
You can paste this in your MediaWiki:Common.css to get username colors:
a[href$=":UsernameGoesHere"], a[href$="/UsernameGoesHere"], a[href$="/(User ID)"]{
color:#{ColorOfYourChoice) !important;
font-weight: bold !important;
text-shadow:#FFAC59 0px 0px 5px, #FFAC59 0px 0px 5px !important;
}
Replace UsernameGoesHere with your (or someone else's) username, and (ColorOfYourChoice) with the hex code of the color of your (or their) choice. Also, replace (User ID) with the ID of the user.
However, if the username has spaces in it, use this code:
a[href$=":Username_Here"], a[href$="/Username_Here"],
a[href$=":Username%20Here"], a[href$="/Username%20Here"],
a[href$=":Username Here"], a[href$="/Username Here"], a[href$="/(User ID)"]{
color:#(ColorOfYourChoice) !important;
font-weight: bold !important;
text-shadow:#000000 0px 0px 10px, #FA8C8C 0px 0px 5px !important;
}
In the first line, you put an underscore as a replacement for the spaces. In the second line, you put %20 as the replacement for the spaces. In the third line, you can put the username as it is. Also, of course, replace (User ID) with the ID of the user and (ColorOfYourChoice) with the hex code of their desired color.
What do you think?