Safari won't render the main content area at a proper width. A change was made which fixed the width issue on Safari while creating no noticeable change on IE or Firefox.

themes/chameleon/common.css

Original:
#content {
clear: both;
}

Changed:
#content {
width: 100%;
clear: both;
}

CommentFileSizeAuthor
#1 common_safari_fix.css.patch470 bytespfaocle

Comments

pfaocle’s picture

Version: 4.6.0 » x.y.z
Status: Active » Needs review
StatusFileSize
new470 bytes

Patch attached. Untested (not a Mac man).

zzzmarcus’s picture

Version: x.y.z » 4.6.4

That patch didn't fix the issue. Now instead of the middle content shrinking, the left column expands when you expand the browser window in both Safari and Firefox.

zzzmarcus’s picture

Ok, for me this is what fixed it (YMMV):
In common.css:

DELETED
#header {
margin-bottom: 2em;
}

MODIFIED
#header img {
float: left;
padding: 0em 2em .5em 0em;
}

TO
#header img {
padding: 0em 2em .5em 0em;
}

klagreca’s picture

Solution offered in post #3 does indeed work. Thanks!

magico’s picture

Version: 4.6.4 » x.y.z

Because the common.css did not have big changes, I'm putting this in HEAD to call for a much wider attention for reviews from Safari users.

beginner’s picture

Status: Needs review » Needs work

needs new patch as per comments #2, #3 and #4.
I don't have Safari, so I will only be able to test that the patch doesn't adversely affect my browser:
Safari users will be needed to review the new patch when it comes.

beginner’s picture

see this if needed: http://drupal.org/patch

lilou’s picture

Version: x.y.z » 7.x-dev

This bug is it still valid ?

johnalbin’s picture

Project: Drupal core » Chameleon
Version: 7.x-dev » 7.x-1.x-dev
Component: theme system » Code
Status: Needs work » Closed (fixed)

This bug is it still valid ?

Since Chameleon has been removed from D7, no. :-)

And I haven't seen any Safari issues for Chameleon, but feel free to re-open if I'm wrong.