I just upgraded to v2.0 and noticed that the search box / search buttons are stacked for IE but appear correct for Chrome and Firefox. I've included an attached image that shows the two side-by-side. I wasn't sure if this is related to an old issue I found or not. I'm not up-to-speed yet on the CSS involved to fix it yet.

Comments

jwolf’s picture

Category: bug » support
Status: Active » Postponed (maintainer needs more info)

Which version of IE?
Please post a link to the site where this is happening so that we can see what's going on.

caschbre’s picture

I'm was testing in IE7. I also made sure to clear my local.css to make sure that wasn't conflicting in any way.

I've sent you the URL for the site using your contact form.

caschbre’s picture

@jwolf... is there any other information you need to help debug this?

Vincent Groen’s picture

StatusFileSize
new4.71 KB
new4.38 KB
new5.73 KB

I read in the old issue (as mentioned by jwolf) that the bug in IE was fixed in release 6.x-1.2, but not long ago I upgraded to 6.x-2.0 and it's there again!

Since this issue seems almost closed, without a definite answer, I'd like to know how to resolve it.

I'm using IE8.

I've added screenshots of IE8, Opera and Chrome/Firefox layout of the searchbox.

website is: www.reviusplein.nl

Thanx in advance!

stephthegeek’s picture

Assigned: Unassigned » jeremycaldwell
Status: Postponed (maintainer needs more info) » Active
Francis Yip’s picture

Hi ,

I had the same issue but solved it as follow: http://drupal.org/node/836498

Hope it is of help to you

jeremycaldwell’s picture

Hi there, seems there is some CSS in the IE7 specific CSS file for this theme that isn't specific enough to set the width. Open your "ie7-fixes.css" file and make this change:

#search-box {
  padding: 8px 0 8px 8px;
  width: 255px;
}

To:

#header #search-box {
  padding: 8px 0 8px 8px;
  width: 255px;
}

That should do it! Please let us know if it works for you as well and will make sure it gets into the next release of the theme.

jamesialford’s picture

Comment #7 worked for me. It is line 34 to 37 for me.

Thank you
James

jeremycaldwell’s picture

Status: Active » Reviewed & tested by the community
goody815’s picture

Status: Reviewed & tested by the community » Closed (fixed)