By arctushar on
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
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
I use "float: left;" in
I use "float: left;" in CSS.
But maybe there is a better way...
how can I do that in garland
how can I do that in garland
You can use firebug for
You can use firebug for firefox to find out the right code or use the same functionality in chrome.
I tried that, but failed
I tried that, but failed
I'm using D7 with a Sub Theme
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 ;)
Worked for me too...
Using a sub theme of Zen (multifelx3) - did the job for me as well