Comments on [F2U HTML] Rain World All Comments Start of Thread Parent

hi, i'm glad you like it!! :D so the code for that image box is at the very end, and it looks like this:

<!------------ RIGHT BLOCK IMG ------------>
 <div class="col-auto hidden-lg-down" style="background: url(
 
 https://cdn.discordapp.com/attachments/625502029955203073/962224294417555506/rainworld10.png
 
 ); height: 419px; width: 233px; border-radius: 0 0 .25rem 0;"></div>

you can add another image on top of it by adding another url in front of the one that's already there, like this:

<!------------ RIGHT BLOCK IMG ------------>
 <div class="col-auto hidden-lg-down" style="
 
 background: url(YOURIMAGELINKHERE) no-repeat center,
 url(https://cdn.discordapp.com/attachments/625502029955203073/962224294417555506/rainworld10.png);
 
 background-size: contain; height: 419px; width: 233px; border-radius: 0 0 .25rem 0;"></div>

i changed the spacing here to make it more clear what's going on, but that won't actually affect anything. the green text is what you're going to want to add. the "no-repeat center" and "background-size: contain;" are there to position the image properly in the center of the image block.

omg thank you!! to, is there a way to make the imagine more bigger? due is floating :0

you can add another value to background-size: contain; such as background-size: 100px 200px, contain; or background-size: 150%, contain; to resize the new image, but it'll get cut off at the edges of the image box rather than hovering over it. the whole layout needs to use overflow: hidden; in order to prevent other elements from bleeding out of the box, so there's nothing you can do to get around that, unless you were to add the image as an <img> outside of the rest of the code instead and position it manually (similar to how i did the pagedoll in this code), but it might be a pain to position it responsively and without causing the whole page to scroll horizontally.

did it work!! tysm!

no problem, glad i could help! <3