Comments on [F2U] Strawberry Milk All Comments

I am using this here! https://toyhou.se/16495707.stardust-starie-
I was wondering if there is a way for me to edit the background color within the box or if that is just set by the bootstrap scheme someone uses.
I am hoping to make it a lighter color since the black looks HARD with the rest of it, fine if not! I have minor HTML knowledge from how often I code on here and used to on tumblr so I can usually figure these out on my own but I am stumped this time

Hello! What a pretty theme you have going ^7^ and yes, there is a way to change the box's bg colour!

  1. In your code, press Ctrl + F and search for <div class="card p-1" style="border: 1px solid #C7BBF3;">
  2. Change this to <div class="card p-1" style="border: 1px solid #C7BBF3; background: #fff">
  3. Change #fff to whatever colour you like! If you want a semi-transparent colour change background: #fff to background: rgba(255,255,255,0.5)

You can search RGB values in Google if you don't want white. The last number is the opacity ranging from 0 to 1. 0.5 means it's at 50% opacity.

I hope this wasn't too confusing ; 7 ; )/

Not too confusing at all! Thank you so much