Comments on Character Wardrobe All Comments

hi i love this code!! i was just wondering if there was a way to change the colours from bootstrap to custom? I was trying to edit them to work but I dont know a lot of html/css ;-;

hello!

For changing bootstrap <div> to a custom color, delete the bg-faded (or any other boostrap tags such as bg-primary, bg-danger) and add style="background-color:#"!

Example:

<div class="bg-faded rounded px-2 py-1 mt-1"> to <div class="rounded px-2 py-1 mt-1" style="background-color:#333>

You can use hex colors (i.e #000000) and rgba (i.e rgba(0,0,0))! Most people use hex coz it's shorter and easier to read LOL

If for example the <div> class you want to edit already has a tag, just add background-color into it!

Example:

<div class="rounded px-2 py-1 mt-1" style="font-size:0.9em;background-color:#333;">

Ah thank you!!! this helped alot! i really enjoy your code!

thanks!! <3