Hi goshenw. You’re close. If you specify the individual properties you need to specify “background” for each one:
#footer-bottom {
background-color: #33363b;
background-image: url(http://www.wattspermaculture.com.au/wordpress/wp-content/uploads/2014/12/footer_sm.jpg);
background-repeat: no-repeat;
background-position: right;
}
When you use the shorthand method you don’t need to specify the individual properties:
#footer-bottom {
background: #33363b url(http://www.wattspermaculture.com.au/wordpress/wp-content/uploads/2014/12/footer_sm.jpg) no-repeat right;
}
Perfect; many thanks for the tip.