Here is a block, which is created by Form Block.

http://img96.imageshack.us/img96/4312/capturepz.png

I want to make the input fields come in front of labels. Something like this;

http://img158.imageshack.us/img158/8325/capturex.png

How can I do this?

Comments

ludo1960’s picture

..using firebug to target the CSS and change the attributes.

mshepherd’s picture

I agree with above. It looks like you have display:block on the label.
You'll end up with something like:

.form-item label {
  display:inline;
}
prabhakarsun’s picture

It does the trick..

Thank you for help..