From b107f9d7f3d47be43be5e93719aa9a36be753e62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu> Date: Fri, 25 Jan 2008 21:21:44 +0000 Subject: [PATCH] #213150 by Lynn: fix HTML validation problem with node term listings --- modules/node/node.css | 3 +++ modules/node/node.tpl.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/node/node.css b/modules/node/node.css index 2a300019951d..7b56fd710176 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 a2b8c021d6b4..009153023fe7 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> -- GitLab