At the moment the Taxonomy Browser page lists the terms from my vocabularies in one long list; there is no visual distinction between the different vocabularies and their terms, except for the vocabulary name being bold (see attachment). Is there some way to have each vocabulary begin on a new line?

Thanks,
Gerben

CommentFileSizeAuthor
taxbrow.jpg120.95 KBGerben Zaagsma

Comments

nancydru’s picture

Assigned: Unassigned » nancydru
Status: Active » Postponed (maintainer needs more info)

Hmm, I wonder why your CSS is different. Mine all start at the left side. Add this to your CSS:

.taxonomy_browser_select {
  clear: both;
}
Gerben Zaagsma’s picture

Thanks but this doesn't change anything. Could it be that some other style sheet interferes? I use the Zen theme.

Edit: and could it be related to the Views module? I changed the default Taxonomy Term view because it prevented the AND and OR functions in TB to work correctly (see here: http://drupal.org/node/311706).

nancydru’s picture

While I was working on something else, I tried:

.taxonomy_browser_select {
  display: block;
}

and it might work better for you.

Gerben Zaagsma’s picture

Sorry, but still no difference..

nancydru’s picture

You're not using CSS compression are you? If so, you'll need to turn it off to see the difference.

Gerben Zaagsma’s picture

No I'm not, that's why I wonder if something else could be overriding the TB style sheet.

nancydru’s picture

Is there any way I can get to your site to look at it with Firebug?

Gerben Zaagsma’s picture

Sure: http://primary-sources.eui.eu

You need the menu link "combined category search" in the left hand upper menu.

Thanks for the help!

Gerben

nancydru’s picture

I guess I wasn't looking at check boxes when I told you the above

.taxonomy_browser_checkboxes {
  clear: both;
  margin-top: 1em;
}
Gerben Zaagsma’s picture

This latter code works, thanks a lot!

Also realised I was previously editing the TB sheet in the module folder and not the one in my custom Zen theme folder... (I tried all 3 code snippets there and last one did it)

One thing about the code: "margin-top" doesn't do anything but replacing it by "padding-top" does.

nancydru’s picture

Status: Postponed (maintainer needs more info) » Fixed

Okay, good. Glad it's taken care of.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.