Comments on [F2U HTML] Sunny Boxes All Comments

Such a pretty code!! I'm using it for my OC Vaquita! Just a quick question -- how to you change the colour of the main box background? I've spent a while looking through the code and I'm a bit stuck :']

i love the colors & images you chose for her profile!! :D the main box background, progress bar backgrounds, <hr> dividers, and main box text all use bootstrap color by default, which adjust based on the theme the user is using (you can see each of the variants in the gallery for this code). if you want to use custom colors instead, find the element that corresponds to what you want to change and add color: #YOURCOLORHEX; (to change the text color) and/or background: #YOURCOLORHEX; (to change the background color) to the style="" attribute.

example: <div class="col-12" style="color: #FFFFFF; background: #000000;">...</div>

for the main box you're looking for the element that looks like this: <div class="col-12 col-lg-7 col-xl-8 p-0 bg-faded">...</div>

for the <hr>s you'll need to use border: #YOURCOLORHEX; instead. just make sure you test it on all themes to see if it's readable :]

Ahh tysm!! Yesyes I managed to change the background colour to the one I'm wanting :D