Forums

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

Home Forums CSS Inserting an image into contact form Re: Inserting an image into contact form

#119264
Andy Howells
Participant

The problem I assume you’re having is that each part of that form is enclosed in it’s own 100% width div. So floating etc is a problem (I assume).

You’ve got a couple of options;

– Do away with the DIV’s and just float the labels/inputs left and specify the widths you want, then stick an image first in the markup and float it right.

– Alternatively, set the #content div to position: relative; and then absolutely position your image.