Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Website Background Coding Help?

Someone please help, I need help finding the space to change my background to an image off a URL. I do see one place but I don't know what formatting to use.

Here is the code:

http://pastebin.com/59xXTq7H

http://pastebin.com/kwVqWsBM

Here is the site:

SnowFangs.droppages.com

1 Answer

Relevance
  • 7 years ago
    Favorite Answer

    To add a background image you need to change the 'background' property to the 'background-image' property. Currently you have:

    background:#fff;

    In your 'typography.css' file. Using the hex color #ffffff you made the background black.

    To change this from a color to an image you need to use the 'background-image' property as shown in an example below:

    background-image: url('http://www.example.com/images/932090329023.png');

    Good luck.

    Source(s): Programmer
Still have questions? Get your answers by asking now.