I installed audio.module and everything works fine but the node page. It displays everything way to the right and off the screen almost invisible. Here is a link to an example page, http://www.jeradranly.com/node/46. All you can see are the menu bullet points, it works fine in the default garland theme. Thanks in advance for any help.

CommentFileSizeAuthor
#4 bluebreeze audio node.patch648 bytesjoachim
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

VM’s picture

I"ve noticed this as well on IE7. Have not confirmed on FireFox to see if its a .css issue or not.

highlife99’s picture

It happens irregardless of the browser your using. This one has me stumped I tried a bunch of thing to try and get it working to no avail. Also the video module text isn't displayed quite right on the frontpage. It has the first word centered by itself to start the paragraph.

highlife99’s picture

Alright I fixed it, lets call it a happy accident. I changed all the float variables to align, just a replace all. That did the trick, fixed all of my problems.

joachim’s picture

Component: Miscellaneous » Template files
Status: Active » Needs review
FileSize
648 bytes

The problem lies with the styling for the posting details line ('Posted February 23rd, 2007 by so&so')

Line 781 of bluebreeze's style.css:

.node .submitted {
text-align: left;
float: left;
width: 99%;
}

The left float means that that the content div that comes after tries to wrap around it. Add to that the width of 99% and the audio node block tries to fit in the remaining 1% of screen width.

You can remove the float, but then you won't get the effect of the submission details and the taxonomy terms being on the same line.
The fix is to add Drupal's built-in clear-block class, which clears the floats for the next block.

Here's a patch.

pyutaros’s picture

Thanks for the patch. Works perfectly.

itapplication’s picture

Status: Needs review » Closed (won't fix)