I'm coding. help(FIXED!!)

Posted 1 year, 5 months ago by NPC-ARTS

I'm having struggles with coding Xiang's code bc images won't come up when I edit stuff except for the bottom row ;o;
It has something to do with the background images but I have no idea how to fix this stuff. If you know how to fix it or can ask around, please help me get my child's profile in order ;o; https://sta.sh/01z9lewkl4pm
Edit: go like and subscribe to acorncap right now

Comments


Two things: You need to add the ; after the url block, but also, you can't use double quotations when indicating your url, because it's closing your style markup before it's ready. You need to use either single quotation, or none, embedding the image in a style markup rather than its own img tag actually removes the need. So, for example, here's one of your code blocks:

<div class="m-1 p-2 card border-0" style="background:url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/1966cc05-0c34-4000-aa13-8f1513ad66be/dfgs633-376c327e-21fb-4d88-9031-e72ecae8baf5.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzE5NjZjYzA1LTBjMzQtNDAwMC1hYTEzLThmMTUxM2FkNjZiZVwvZGZnczYzMy0zNzZjMzI3ZS0yMWZiLTRkODgtOTAzMS1lNzJlY2FlOGJhZjUucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.O91ddT_BtaCBp_CEWtRAM7x8mFuP2QvhgPAhfgc41MI") center;background-size:cover;height:398px;">

Here's what you need to do

<div class="m-1 p-2 card border-0" style="background:url('https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/1966cc05-0c34-4000-aa13-8f1513ad66be/dfgs633-376c327e-21fb-4d88-9031-e72ecae8baf5.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzE5NjZjYzA1LTBjMzQtNDAwMC1hYTEzLThmMTUxM2FkNjZiZVwvZGZnczYzMy0zNzZjMzI3ZS0yMWZiLTRkODgtOTAzMS1lNzJlY2FlOGJhZjUucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.O91ddT_BtaCBp_CEWtRAM7x8mFuP2QvhgPAhfgc41MI')center;background-size:cover;height:398px;">

Or, in a way you can view it:  background:url('IMAGE.PNG');

The rule of thumb I learned in school was 'double quotes outside, single quotes inside'. 

Thank you!!!!!! Now I feel like I just asked how I put the square into the circle hole but how else do we learn lol, you're a lifesaver

let me tell you improperly closed markup is something even professionals do on the reg, EVERY TIME, WE ALL DO THIS

UNDERSTANDABLE LMAO