Closed (fixed)
Project:
Zen
Version:
6.x-1.0
Component:
CSS/HTML Markup
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 Feb 2009 at 18:08 UTC
Updated:
20 May 2009 at 12:10 UTC
There's a missing div in node.tpl.php around print $links; . There's a definition for it in the CSS file, but the div does not exist. We need the div for clearing any floats in the node.
Comments
Comment #1
johnalbinHmm… Actually, the "links" class is applied to the
<ul class="links">that is a part of the contents of the $links variable, so I think removing the<div class="links">was the right idea. But I missed changing the stylesheets to match that modification. So I just modified the stylesheets to use.node ul.linksinstead of.node div.links.Gabor, you can still apply the clear to
.node ul.links. Alternatively, you could add a "clear-block" class to<div class="node-inner">in your sub-theme’s node.tpl.php.Comment #2
johnalbinForgot to mark this as fixed. Since I committed the change I mentioned in the previous comment.
Comment #3
johnalbinAlso, forgot to mention…
Thanks for the bug report, Gabor! :-)