diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-25 21:21:44 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-25 21:21:44 +0000 |
commit | b107f9d7f3d47be43be5e93719aa9a36be753e62 (patch) | |
tree | 214fb4e5a80cefd52dfdaac70a2cefd09105e3e4 | |
parent | 5b2eabcaf20bbfb73f8085bb5991af478c87cbf1 (diff) | |
download | brdo-b107f9d7f3d47be43be5e93719aa9a36be753e62.tar.gz brdo-b107f9d7f3d47be43be5e93719aa9a36be753e62.tar.bz2 |
#213150 by Lynn: fix HTML validation problem with node term listings
-rw-r--r-- | modules/node/node.css | 3 | ||||
-rw-r--r-- | modules/node/node.tpl.php | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/modules/node/node.css b/modules/node/node.css index 2a3000199..7b56fd710 100644 --- a/modules/node/node.css +++ b/modules/node/node.css @@ -39,3 +39,6 @@ td.revision-current { float: none; display: block; } +.terms-inline { + display: inline; +} diff --git a/modules/node/node.tpl.php b/modules/node/node.tpl.php index a2b8c021d..009153023 100644 --- a/modules/node/node.tpl.php +++ b/modules/node/node.tpl.php @@ -62,7 +62,7 @@ <?php endif; ?> <?php if ($terms): ?> - <span class="terms"><?php print $terms ?></span> + <div class="terms terms-inline"><?php print $terms ?></div> <?php endif;?> </div> |