Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Problem with background-image (resolved) Re: Problem with background-image (resolved)

#99130

If you copied and pasted your code then the issue is a simple typo.

This:

background-image" url("images/pic.jpg") no-repeat;

Should actually be this:

background: url("images/pic.jpg") no-repeat;

EDIT: As @karlpcrowley already said.