I am trying to insert an image into the large white space on the right hand side of this page.
http://www.jobspark.ca/post-a-job/
I am trying to accomplish this using CSS. This is what I have so far.
#modulePage19099472
{ background-image: url (http://www.jobspark.ca/storage/postjobimage.jpg);
background-position: right;
background-repeat: no-repeat;
padding: 0 0 0 0;
margin: 0 0 0 0; }
It looks like you want to apply your styles to the “.form-body” class, not “#modulePage19099472”. Try the following CSS:
Make sure there’s no space between “url” and the open parenthesis.