Comments on Character Wardrobe All Comments Start of Thread Parent

Hello! I'm really sorry for the delayed response ;;

If you want to change them to bootstrap colors, simply change the "bg-faded" to whatever boostrap colors you want! (i.e bg-primary, bg-danger, bg-success, bg-light, bg-dark)

For example:

<div class="bg-faded rounded px-2 py-1 mt-1"> to <div class="bg-dark rounded px-2 py-1 mt-1">

If you want to change it to a custom color, delete the bg-faded 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>

Also, I failed to notice that I forgot to list bg-faded as one of the bootstrap colors I've used ;; i'll be adding that into the comments really quickly!

thank you! <3