New to Couch, can anyone tell me how I stop the image url displaying on the live page. The full path is showing above the image.

You have two options. Add hidden='1' to the image editable region or relocate the cms:editable tag to within your cms:template tag. The latter is preferred because then you have everything defined in one location:
- Code: Select all
<cms:template title='Contact Us'>
<cms:editable name='content' type='richtext'/>
<cms:editable name='picture' type='image'/>
</cms:template>