In node.tpl.php:

Line 27:  <span class="taxonomy"><?php print $terms?></span>

Genereate HTML output:

<span class="taxonomy"><ul class="links inline"><li class="first last taxonomy_term_6"><a href="/category/tags/foobar" rel="tag" title="" class="taxonomy_term_6">foobar</a></li>

Create one Error per Node http://validator.w3.org/

Same problem in pixture theme.

Comments

Jeff Burnz’s picture

Assigned: Unassigned » Jeff Burnz

Yes, ye ole block level element inside an inline element...

Can you switch those SPAN tags to DIV and see how it goes? If good, I'll commit a fix to head.

tbals’s picture

With DIV-tags its working but the design look worse. With DIV-tag you create a new block and so you have a CR/LF between ><?php print $submitted?> and <?php print $terms?>.

Jeff Burnz’s picture

Status: Active » Needs review

See http://drupal.org/node/313618#comment-1031017 for the patch.

I simply removed the spans and set the styles on .node ul.inline, which seems like a reasonable solution.