Community & Support

How to theme a block, so that it doesn't show labels?

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

Try...

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

I agree with above. It looks

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;
}

Thanks..

It does the trick..

Thank you for help..