Happy 11th anniversary, screamer wiki!
Screamer Wiki:Guides/Styling: Difference between revisions
imported>Sumpy (Reorganized colors into a list.) |
imported>Sumpy mNo edit summary |
||
Line 24: | Line 24: | ||
* <font color="lightblue">'''lightblue'''</font> | * <font color="lightblue">'''lightblue'''</font> | ||
Choose the color you want and replace the ''COLOR'' | Choose the color you want and replace the ''COLOR'' string with your chosen color. | ||
To get more color choices specifically up to 16777216 colors, you can use this line of code, and replace the '''0''' with the exact color code. You can use [http://www.rapidtables.com/web/color/RGB_Color.htm this site] to get all the color codes. | To get more color choices specifically up to 16777216 colors, you can use this line of code, and replace the '''0''' with the exact color code. You can use [http://www.rapidtables.com/web/color/RGB_Color.htm this site] to get all the color codes. |
Revision as of 20:31, 30 December 2015
Styling Guide
This guide explains how to style articles. You will learn how to change colors, size and font.
Color
To change the text color, you will have to copy the following line of code.
<font color=COLOR>TEXT</font>
Then, you have to press the http://images2.wikia.nocookie.net/screamerchecker/images/a/a8/Contibute.png button in the upper right corner of the website, then Edit this Page, and again in the upper right corner, click the Source tab. Here you will see the source code of the page. Now, paste the code where you want to change the text color.
Here are some colors that you can use.
- white
- grey
- black
- brightred
- red
- orange
- yellow
- lime
- cyan
- blue
- purple
- magenta
- pink
- lightblue
Choose the color you want and replace the COLOR string with your chosen color.
To get more color choices specifically up to 16777216 colors, you can use this line of code, and replace the 0 with the exact color code. You can use this site to get all the color codes.
<font style=color:rgb(0,0,0)>TEXT</font>
When you're done choosing your color, copy the text you want to color and replace the TEXT from the code with your text.
And voilà, your text is now coloured!
Size
To change the text size, you will have to copy the following line of code.
<font size=SIZE>TEXT</font>
Then, you have to press the http://images2.wikia.nocookie.net/screamerchecker/images/a/a8/Contibute.png button in the upper right corner of the website, then Edit this Page, and again in the upper right corner, click the Source tab. Here you will see the source code of the page. Now, paste the code where you want to change the text size.
Now, choose a value that's between 7 and -7. After, replace the SIZE from the code with the size you chose and replace the TEXT from the code with your text.
Your text size should now be changed!
Font
To change the text font, you will have to copy the following line of code.
<font face=FONT>TEXT</font>
Then, you have to press the http://images2.wikia.nocookie.net/screamerchecker/images/a/a8/Contibute.png button in the upper right corner of the website, then Edit this Page, and again in the upper right corner, click the Source tab. Here you will see the source code of the page. Now, paste the code where you want to change the text font.
After that, you have to choose a font, like Helvetica or Arial. After, replace the FONT from the code with the font you chose and replace the TEXT from the code with your text. You can usethis site to get help with font styles (weight, stretch, and more).
And boom! The font face is now changed.
If you want to combine multiple text style codes in one line, just add ; between them.
<font color=COLOR;font size=SIZE;font face=FONT>TEXT</font>