I'm wondering how this would be done, I've seen an example on smashingmagazine but that is for the post background in the index feed and requires a plug in,I assumed it would simply be a case of
<div background="<?php the_field('custom_field_name');?>">
this however, hasn't worked so far, I'm guessing this is due to me not setting a specific direct url, however since I'm able to place images via custom field in the post I'm sure its possible to get the effect I want achieved.
Another idea I had was to set an with the source as a custom field via php, which I have already done for my custom theme, though I'm not sure about the correct css to applied to the img class and it's container div to make sure it functions as the background.
the_field('custom_field_name');contain a url? if so it should be<div background="url(<?php the_field('custom_field_name');?>)">- Pete<div background="<?php the_field('custom_field_name');?>">? - algoni