Closed (fixed)
Project:
Audio
Version:
5.x-1.0
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
14 Jun 2007 at 02:04 UTC
Updated:
12 Jul 2007 at 23:17 UTC
When viewing the page for a single entry there is a display problem. I cannot really describe it better than actually seeing it. See here:
http://www.uberguilds.org/radio/node/81
Comments
Comment #1
dcypl commentedSorry no answer, but I'm testing a new site, and got the exact same error, (the table created may have been a bit wider). Only happens on the individual node page, not on the audio list page.
Hopefully there's a simple answer?
I'm using the danger4K theme as a base, I've disabled the views_bonus module as there was a conflict with the audio module too.
Comment #2
qforq commentedCan anyone help with this?
Comment #3
zirafa commentedIt's a floating element problem. The problem is that .submitted is floated left, and .taxonomy is floated right. So when the content of the node appears, it gets squished in the middle. There is no reason .submitted needs to be floated right.
Here's what you can try doing. In style.css for .submitted {} change the float:left; to float:none;
Then go into node.tpl.php and move the
<div class="taxonomy">...</div>BEFORE<div class="submitted">...</div>.A floating element floats to the content immediately after it. So what will happen is the taxonomy element will be floated to the right of the submitted div, which is what you want. That should probably fix the problem.
Comment #4
zirafa commentedTypo: "There is no reason .submitted needs to be floated left."
Comment #5
zirafa commentedYou can also try adding
<div style="clear:both"></div>immediately after the taxonomy and submitted divs in node.tpl.php.Comment #6
qforq commentedThanks, both of those suggestions combined fixed it :) I had to do both, though.
Comment #7
(not verified) commented