Help please!

In Firefox, the taxonomy tags next on each blog post appear correctly, but in IE, they are all bunched up - they don't justify to the next line.

Goto www.lifeemerging.com/cancerblog . in IE 6 and 7, look at a blog post that has more than 1 tag in the teaser.

I've tried a bunch of CSS tricks to get it to display correctly, but I'm totally stumped. Any help is greatly appreciated!

M

Comments

theneemies’s picture

If you stick

	.node .taxonomy {
		display: block;
		clear: both;
		width: 100%;
	}

into your ie.css it will force the tags to be on a new line in IE.

mdlepage’s picture

Thank you very much! Did the trick! Seemed simple, but was confusing for this newbie.
m