Hi
I am using drupal 7.2 and taxonomy in tags. it is showing line by line. But I want to show this in one line. What can I do

Comments

steeph’s picture

I use "float: left;" in CSS.

But maybe there is a better way...

bdtushar’s picture

how can I do that in garland

steeph’s picture

You can use firebug for firefox to find out the right code or use the same functionality in chrome.

arctushar’s picture

I tried that, but failed

Duarte Cancela’s picture

I'm using D7 with a Sub Theme of ZEN i tried this code on css file and work for me:

.field-type-taxonomy-term-reference .field-label
{
display: inline-block;
float: left;
padding-right: 1em;
}

.field-type-taxonomy-term-reference .field-item
{
display: inline-block;
padding-right: 1em;
}

I hope work for you to ;)

imoreno’s picture

Using a sub theme of Zen (multifelx3) - did the job for me as well