The contemplate module displays contemplate, teaser, and taxonomy in each line.
How can I align the output in one line?

I am using Drupal 5.7. Let me know if you need more information.

Comments

rizqi’s picture

to align output in one line, you will need to understand some css stuff
you will need to put something like this in your template style.css

use display:inline

div.field-xx {
  display: inline
}

or
use float: left;

div.field-xx {
  float: left;
  width: 100px;
}

i hope it can help

thanks
Rizqi
Professional Drupal Developer
Surabaya, Indonesia