You should contact Fandom Support and request that achievements be enabled on your wiki.
I think polls are not allowed on Community Central.
Paste this wikitext in the source editor:
<includeonly><div class="quote" style="width:80%;"><span style="font-size: 28px;color: #FFF;font-family: ceuntry;">'''“'''</span><span style="font-size: 18px;color: #FFF;padding:5px;text-shadow: 0 0 1px black, 0 0 1px black, 0 0 1px black, 0 0 1px black, 0 0 1px black;">''{{{1|ParamName1}}}''</span><span style="font-size: 28px;color: #FFF;font-family: ceuntry;">'''”'''</span>{{#if:{{{2|}}}|<br/><span style="font-size: 18px;color: #FFF;padding: 20px;text-shadow: 0 0 1px black, 0 0 1px black, 0 0 1px black, 0 0 1px black, 0 0 1px black;">''―{{{2|ParamName2}}}}}{{#if:{{{3|}}}|, {{{3|}}}''}}</span></div></includeonly>
<noinclude>{{Documentation}}
<templatedata>
{
"params": {
"1": {
"label": "Put a quote here.",
"description": "Put any quote for the page here.",
"example": "[Example1]",
"type": "line",
"required": true,
"suggested": true
},
"2": {
"label": "Who said this or who was the author of this quote?",
"description": "Basically the person who said this.",
"example": "[Example2]",
"type": "content",
"required": true,
"suggested": true
},
"3": {
"label": "Source of this quote?",
"description": "Where did this quote come from?",
"example": "[Example3]",
"suggested": true
},
"4": {
"label": "What will be the quote box's width?",
"example": "\"100%\", \"80%\".",
"type": "number",
"suggested": true
}
},
"description": "A quote box."
}
</templatedata>
</noinclude>
P.S:- Replace [Example1], [Example2], and [Example3] with the dialogues of your choice. You can also change the descriptions and labels if you'd like, to fit the theme of your wiki (which may also apply to the background image).
No problem :)
By default, Fandom doesn't allow this feature, but you can workaround this by using the Ctrl + P shortcut (or Cmd + P on Mac) select Save as PDF on the printer list. You can adjust the layouts/settings (like the margins or the background graphics) and then click Save.
P.S:- This works on any page but note that the exported PDF might contain ads and/or sidebars, which is why it is recommended to use Reader Mode while exporting the page to a PDF.
Oh, I see. Sorry for the misunderstanding, I thought so because it originally said that in Help:User rights.
Admins can revoke Content Moderator rights too, btw.
^^ No problem :)
^ The User ID isn't mandatory for coloring but it helps to consistently style all links to a specific user (basically covering all possible link formats). Without including the user ID, it's possible that you may miss some of the link formats.
It doesn't work for discussions because the discussions come under Fandom's Unified Community Platform (UCP) and it's JavaScript-based and dynamically loaded, unlike the regular pages which use HTML and CSS. So therefore whatever you put in the MediaWiki:Common.css doesn't "reach" the discussions. Also, discussions use Shadow DOM or dynamic rendering, so CSS doesn't apply there.
I believe you would need some JS injection via the MediaWiki:Common.js to work around this, but unfortunately even that has limited effect on discussions. Some communities even request features from Fandom staff. Otherwise, I'm pretty sure custom username colors are limited to wiki content rather than discussions and/or forums.
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.
Oh, I see. Sorry for the mistake!
Yes, you can do this:
|image1 = <gallery>
(image1)|(caption1)
(image2)|(caption2)
(image3)|(caption3)
</gallery>
You have to do this under the image1 section of your infobox in source editor (and in the same format). Replace (image1), (image2), and (image3) with the names of each of your images. The captions are optional but if you want each image to have a different caption, you can replace (caption1), (caption2), and (caption3) with the captions of your choice.