Journal box is breaking the theme. I am using the default Garland theme of Drupal. Journal boxes on the comment pages are overflowing to right side and extending the page width. Attached a capture. Also I think it would be better to decrease default box height.
Comments
Comment #1
mcload commentedBTW, I have this problem with Firefox 3.0.10. IE 8 does not break the theme.
Comment #2
sunBased on the screenshot, this seems to be caused by Fivestar. I never had this issue, so you definitely need to fix it in your theme.
Comment #3
mcload commentedHow can I fix it? I am using the default Garland theme of Drupal. I did not do any changes to theme.
This is the html code of the fivestar and Journal form causing the problem:
Comment #4
sunYou need to copy the array in journal_form_ids_default() into your settings.php as $conf['journal_form_ids'] and afterwards, you add the internal $form_id of that fivestar widget form to the array with a value of 0. Example:
Note that 'fivestar_form' is just an example, I do not know the actual form id of Fivestar off hand.
Comment #6
mcload commentedForwarding this issue to Fivestar's issue queue as Journal's developer said that it seems to be caused by Fivestar. Maybe it can be fixed by Fivestar.
Comment #7
sunNo, I said that you have to disable Journal's form alteration for Fivestar's voting form.
Comment #8
mcload commentedI tried it. However, Fivestar Extra module gives each comment a different form id created by adding the comment number to the end of "fivestarextra_form_comment_". For example, fivestarextra_form_comment_1531, fivestarextra_form_comment_85633, fivestarextra_form_comment_99725, etc. How can I disable all of them? 'fivestarextra_form_comment_' => 0 does not work. 'fivestarextra_form_comment_1531' => 0 disables only the comment #1531.