« Web, HTML, Tech Forum

Background Image Not Working [closed]

SpaceHey and coding n00b here. I looked at some guides and put together this CSS code for a background collage of Andrew Wyeth paintings I threw together in Microsoft Paint. It works fine on Nein MC's tester, but I have it in my About Me section right now, and it's not displaying. Anyone know what I did wrong? Thanks for helping me out.


<style>

  body {

    background: url(https://i.imgur.com/UWVYbqB.png) repeat;

    background-size: 424px 253px;


     -webkit-background-size: center;

     -moz-background-size: center;

     -o-background-size: center;

     background-size: center;


   }

</style>


Report Topic

5 Replies

Sort Replies:

Reply by Pawtals!

posted

Wrap the URL in quotes, rookie mistake.


Permalink Report Reply

Reply by Palindrome

posted

@pawtals!

Thank you for your help, but it's entered on my page right now and still not showing up. The adjustment still works on Nein MC's site. Here's what I edited exactly to make sure I did it right:


    background: url("https://i.imgur.com/UWVYbqB.png") repeat;


Do you know what else it could possibly be?


Permalink Report Reply

Reply by Pawtals!

posted

I know that the background rule is prone to breaking when you don't give it args in the correct order I'll look into that.


Permalink Report Reply

Reply by Pawtals!

posted

After checking I realized its because the image is hosted on imgur and it just doesn't work on SpaceHey, use imgbb instead if possible.



Permalink Report Reply

Reply by Palindrome

posted

Woah! It worked! Thank you.

monkey-magic


Posting the code that I got to work in case any other n00bs come across this:


<style>

  body {

    background: url("https://i.ibb.co/kQy8pNs/Wyeth-Tentative3.png") repeat;

    background-size: 424px 253px;


     -webkit-background-size: center;

     -moz-background-size: center;

     -o-background-size: center;

     background-size: center;


   }

</style>


Permalink Report Reply

Palindrome closed this Forum Topic