Slush Invaders Fanon Wiki
Advertisement

Stuff on the top of pages

Note: The spaces between the "paragraphs" are important. It won't work if you paste it on one go. You need to paste each paragraph one by one to make the code work.


{| style="width:100%; border-radius: 5px; background: white; border: 1px solid #Box Outline Clr; margin-bottom: 5px;"

|[[File:Image|left|150px]]<div class="roundtop" style="background: #Text BG Clr; text-align: center; border:2px solid #Text BG Outline Clr; padding:3px; vertical-align:top; webkit-border-radius:5px; border-radius:10px "><span style="color:black;" class="nounderlines">'''Text'''</span></div><div style="font-family:Arial; color:Black;"><p style="text-align:center;">''Subtitle''</p></div>

|}


Example 1

Ace02
Sup Bruhs
Sweg m8

Text decoration guide

This is the things you can do with the text

(Note: remove the quotation marks (") when copy and pasting to make it work :3)

Replace COLOR with the name of color you want, or the hex code.

  • Red is "red" or "#FF0000", Cyan is "cyan" or "#00FFFF", Gray is "gray" or "#999999".

Skip to Single decoration if you want just one type of text decor.

Core Code:

<span style="DECORATIONS">TEXT</span>

Replace DECORATIONS with the decoration codes down here. Make sure to space after every decor type.

Replace TEXT with the text you want.

Example of two decorations:

<span style="color:red; text-shadow: 0 0 10px blue;">Glowing Colored</span>

Yes Bruh

Color

color:COLOR;

COLOR represents the color of text

Example:

<span style="color:red;">Yes</span>

Result: Yes

Glow or Shadow

text-shadow: 0 0 ??px COLOR;

?? is the number of how much big the glow is. However, the more bigger it is, the more it fades out. Guide.

COLOR represents the color of the glow/shadow

Example:

<span style="text-shadow: 0 0 10px blue;">Bruhs</span>

Bruhs

Overline

text-decoration:overline;

Just insert this to make the text have an overline. Works perfectly with underline :3

Single decorations

Color

<span style="color:COLOR;">TEXT</span>

Glow

<span style="text-shadow: 0 0 ??px COLOR;">TEXT</span>
Advertisement