Comments on [ F2U ] User Onigiri All Comments

hi there!! I'm working on the code but when I put in an image for the background, it split into multiple images (three on the top, three on the bottom) for some reason? is there any way to change it to be just one?

hello!  this is because the background settings are set to background-repeat:repeat, causing that tile effect!

for one image, add in: background-size:cover; background-repeat:no-repeat; like so!

 <div class="container-fluid shadow p-3" style="font-size:95%; background-image:url(IMG_URL_HERE); background-size:cover; background-repeat:no-repeat;">

Thank you so much!!!!