Hi there i can’t seem to figure out how to get this to work can you help me?

yeah! what problem are you having specifically?

I ended up figuring out the initial problem, but I do have one question how do I change the color? Or is it possible to change the color?

the colors this layout uses are the bootstrap colors, so they change depending on the theme. but if you want to use custom colors instead (which will be the same on every theme), you can use color: #000000;, background-color: #000000;, and border-color: #000000; (replace the #000000 with whatever hex code you want) in the style="" section of any element you want to change the color of, like this, if you wanted to change the color of the name card, for example:

<div class="card bg-secondary p-3 mb-3" style="color: #FFFFFF; background-color: #000000; border-color: #555555;">

Thank you!