This user is not visible to guests.

is there a way to be able to select multiple?

Heyy! Sorry to bother <33 Is there a way to use custom colors with this? o:

This is a super late reply but I figured it would help anybody looking to change theirs also in the future.

If you are looking to change the box color add-

background-color: #080808 ; padding: 10px; border: 1px solid black (If you don't want a border remove that section)

(#80808 color can be changed to anything you search under hex color code)

and put that into the "style" portion at the end of everything.

For example at the beginning of the code add the red words here:

<div class="bg-faded p-md-4 p-2 mx-auto mb-2 text-center" style="border-radius:15px; max-width:700px; background-color: #080808 ; padding: 10px; border: 1px solid black">

If you want the other boxes colored do the same thing!

The same goes for the border if you want the border around your box bigger change the border: 1px to something like border: 4px. You can also change the color from solid black to whatever color you wish.

If you are talking about text color- <div class="col-auto p-1 mb-2 text-success" style="font-weight:300;font-size:1.2rem"> 

Switch that to any of these : text-primary - text-secondary - text-success - text-danger - text-warning - text-info - text-light - text-dark - text-body - text-muted - text-white 

The same applies to the icons -

<div class="col-auto"><i class="fal fa-shirt fa-2x px-1 text-primary"></i></div>

Tysm omg!!! 

Ofc! :))