Comments on [ F2U ] Telling All Comments

Is there a way to have two separate coded profiles but have them side by side, sitting next to each other, rather than one on top of the other? 👀

you probably could but because of the already wide-ish width of the whole code, it may end up squishy if that's a bother 👀

what you'd want to do is be familiar with rows/bootstrap grids (if you're not already)and smack the code in two columns!  here's a quick example:

<div class="row no-gutters">
    <div class="col-lg-6 p-1">
        LEFT CODE
    </div>
    <div class="col-lg-6 p-1">
        RIGHT CODE
    </div>
</div>

edit: col-xl-6 might be better if your screen can be extremely wide

Golly! Thank you so much for the help. Apologies to ask for more but is there a way to move the music player to the left side of the box? :0

That should be it hopefully! Haha. I seriously appreciate it, I got a real smooth brain when it comes to coding.

three ways:

  • the columns are coded with order, so switch order-lg-2 with order-lg-1 and vice versa!
  • delete the orders ^
  • add flex-row-reverse to the row no-gutters

i have the last option inside the code as a comment guide, so try that!