I had trouble using the image module and image galleries in particular with this theme, I realized quickly it was a CSS issues. Looking at the CSS I saw there already was the clearfix class to solve overhanging floated content. So I applied the clearfix class to the content div and my issue was resolved.

Sorry this isn't a correct patch submission but here is the solution:
In page.tpl.php:

to

Also this doesn't seem to mess up anything on other pages in the site so it's harmless to have even when no floated elements are present within the content div.

Comments

ahneill’s picture

Hi,

I was so glad to see someone else facing the clearfix issues. You posted that you had a solution, and it appeared you meant to give some code example for how to adjust page.tpl.php.... I am really struggling with this issue and if you could give me an example of HOW to include clearfix within the page.tpl.php properly it would be a HUGE help.

Thanks so much

Art

jhuckabee’s picture

Assigned: Unassigned » jhuckabee
Status: Needs review » Fixed

The issue has been fixed in both HEAD and 4.7.0 versions in CVS. You can see the fix in the latest version of the theme.

Here is the change:

<div id="content">

to

<div id="content" class="clearfix">

Anonymous’s picture

Status: Fixed » Closed (fixed)