Needs review
Project:
Wabi
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
25 Sep 2008 at 23:02 UTC
Updated:
26 Sep 2008 at 14:09 UTC
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
Comment #1
Jeff Burnz commentedYes, 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.
Comment #2
tbals commentedWith 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?>.Comment #3
Jeff Burnz commentedSee 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.