How To Make Spoilers

coille

local fae
Joined
Jun 21, 2019
Posts
26
Bells
139
Ice Cream Coins
0
Switch
7255-2578-1894
Not sure if this goes here, let me know if I need to move it.

I'm fairly new to forms and can't figure out how to make spoilers to hide text under.

I know theres probably a simple answer to this but I can't find any, so if someone could show me the coding used to make spoilers I would really appreciate it!
 
^

idk how to simplify it but its:
[ spoiler = ] insert whatever text you want [ / spoiler ] (without the spaces)
 
Last edited:
^

idk how to simplify it but its:
[ spoiler = ] insert whatever text you want [ / spoiler ] (without the spaces)

Tysm! Hate to bother again but how do you size them, for example how would I line three or two on the same row?
 
I actually have no idea ;w; as I've just learned how to make spoilers recently myself~
You could possibly try spacing it like using the spaces you use to center a signature, but I'm not sure if it'll work.




test
test


yep i have no idea :(
 
Last edited:
Thanks for the help! Hate to bother again but how do you size them, for example how would I line three or two on the same row?

You would need to make a chart and put them in separate columns! It's a little complex but getting the hang of it is easy when you know what to input:

You need to be in "Go Advanced" mode in your reply, and click on this icon in the top left:
N4LHuf7.png




Then fill out how many rows or columns you want (In this case, 3):
T3UrKvh.png



Then it will give you this code:
HTML:
[table="width: 500"]
[tr]
	[td][/td]
	[td][/td]
	[td][/td]
[/tr]
[/table]



You can put each separate spoiler in it's own [td][/td] and you will end up with this:
HTML:
[table="width: 500"]
[tr]
	[td][spoiler]text[/spoiler][/td]
	[td][spoiler]text[/spoiler][/td]
	[td][spoiler]text[/spoiler][/td]
[/tr]
[/table]


Which will look like this:

[table="width: 500"]
[tr]
[td]
text
[/td]
[td]
text
[/td]
[td]
text
[/td]
[/tr]
[/table]
 
You would need to make a chart and put them in separate columns! It's a little complex but getting the hang of it is easy when you know what to input:

You need to be in "Go Advanced" mode in your reply, and click on this icon in the top left:
N4LHuf7.png




Then fill out how many rows or columns you want (In this case, 3):
T3UrKvh.png



Then it will give you this code:
HTML:
[table="width: 500"]
[tr]
	[td][/td]
	[td][/td]
	[td][/td]
[/tr]
[/table]



You can put each separate spoiler in it's own [td][/td] and you will end up with this:
HTML:
[table="width: 500"]
[tr]
	[td][spoiler]text[/spoiler][/td]
	[td][spoiler]text[/spoiler][/td]
	[td][spoiler]text[/spoiler][/td]
[/tr]
[/table]


Which will look like this:

[table="width: 500"]
[tr]
[td]
text
[/td]
[td]
text
[/td]
[td]
text
[/td]
[/tr]
[/table]

Tysm!!!!
 
Back
Top