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

dcypl’s picture

Sorry 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.

qforq’s picture

Can anyone help with this?

zirafa’s picture

It'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.

zirafa’s picture

Typo: "There is no reason .submitted needs to be floated left."

zirafa’s picture

You can also try adding <div style="clear:both"></div> immediately after the taxonomy and submitted divs in node.tpl.php.

qforq’s picture

Status: Active » Fixed

Thanks, both of those suggestions combined fixed it :) I had to do both, though.

Anonymous’s picture

Status: Fixed » Closed (fixed)