The position of search input region is buggy in IE6. It should float right and padding to RHS; BTW, it is now sticky with LHS region and expend to maximum width.

This problem only exist in IE6. Both IE7, FF2/3, Opera9.2 and Safari3 are functioning.

Comments

hswong3i’s picture

Status: Active » Needs review

I did a special hack for IE6. Fix the width of search-form, and special parameter for text margin:

Index: fix-ie.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/internet_services/fix-ie.css,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 fix-ie.css
--- fix-ie.css  6 May 2008 15:16:47 -0000       1.1.2.1
+++ fix-ie.css  28 May 2008 03:20:55 -0000
@@ -1 +1,38 @@
+/**
+ * Search region
+ */
+/* Dynamic width handling is buggy in IE6 */
+#search-region .search-form {
+  width: 600px;
+}
+/* Margin handling is buggy in IE6 */
+#search-region .search-form label {
+  margin: 0 0 0 10px;
+}
+/* Margin handling is buggy in IE6 */
+#search-region .search-form .advanced {
+  margin: 0 0 0 8px;
+}

Maybe not a good idea for other language, since the internal text may have different overall width. Anyway, not a bad solution.

hswong3i’s picture

Category: bug » task

Actually this task should already be done, unless user response as not function or suitable.

hswong3i’s picture

Status: Needs review » Fixed

Assume as fixed since no negative feedback for existing implementation.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.