Home › Forums › CSS › Inserting an image into contact form › Re: Inserting an image into contact form
December 28, 2012 at 8:31 pm
#119264
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.