Help with Tribute Page -Photos

How can I upload my photos to codepen?Ive got the url but I think my writing is wrong…

body {
    background-image: url ("https://cloudinary.com/console/lui/media_library#/dialog/image/upload/Carina_Dwarf_Galaxy_dsceag")
}

I’ve edited your post for readability. When you enter a code block into the forum, remember to precede it with a line of three backticks and follow it with a line of three backticks to make easier to read. See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

markdown_Forums

Hi!

You are using the wrong link… Follow instructions bellow:

pic0

pic1

tried this one; still doesn’t work…

body { background-image: url (http://res.cloudinary.com/douq0ehx9/image/upload/v1507755739/Carina_Dwarf_Galaxy_dsceag.jpg) }

Hi… you must add a “;” at the end of the CSS property and remove the white space between the “url” and the address!

body { background-image: url(http://res.cloudinary.com/douq0ehx9/image/upload/v1507755739/Carina_Dwarf_Galaxy_dsceag.jpg); }
1 Like

wow. did’nt think the white space that matter! ty very much :slight_smile:

1 Like