Hi,

Does anyone have ideas on how to style the advanced taxonomy block so that the leaf items only lay themselves out horizontally rather than vertically? I've tried to style with CSS but there doesn't seem to be enough selectors to get at just the leaf items.

TIA,
Anthony.

Comments

scalp’s picture

I realize that this is a severely old issue, but in case anyone is still interested in this it can be achieved via css

#block-taxonomyblocks-0 li {
display:inline;
margin-right:15px;
}

Just replace #block-taxonomyblocks-0 with whatever the id of your block is.