Okay, so I'm trying to create a custom HTML profile for myself based on one of lowkeywicked's, and I'm trying to make a box to put the whole set of info (name, age, DOB, etc.) in and have it off to the side with room to add text beside the box, and i want the box to have a thin white border, but I'm having trouble doing this, can anyone help me? (tab linked is the coding tab)

SchwarzerAlptraum

If I get what you're trying to do, you could do something like give your div with the info stuff a class like card. Or if you just wanted the border, but not the rounded corners, just use something like border: 1px solid; and add border-color: [color] to change the border color. Then you'll have to change the layout by putting everything in your row (so info and everything else that goes beside it) in its own div and give it a display: flex; style. Then depending on how wide you want your info box to be, use col-# classes for your info box and the stuff beside it. So an example could be col-4 for your info box and col-8 for everything else that goes beside it.