Search Option doesnot highlight in ie 7 latest gumaxv skin

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
node
Rank 4
Rank 4
Posts: 21
Joined: July 19th, 2008, 2:51 am

Search Option doesnot highlight in ie 7 latest gumaxv skin

Post by node »

Hey Paul,

I have been unsuccesfully tryin to correct the bug.. It seems the search textbox goes dud when u click on it ie7. infact u cannot enter text into the column.. running a gets me into div tag before the search.. wonder why its there.. coud dis be causing the trouble?
Help
Cheers
Node
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Search Option doesnot highlight in ie 7 latest gumaxv skin

Post by Paul »

I confirmed this is IE7 white space bug :o !!!

if you comment out white-space for section #gumax-searchBody in CSS file, IE7 works fine.

#gumax-searchBody {
/* border: 1px solid #99FF00; /* testing */
background: none;
position: relative;
padding: 0;
/* white-space: nowrap; /* for Opera */
vertical-align: middle;
}

But this will break IE7 layout....

The fix is on the way ...
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Search Option doesnot highlight in ie 7 latest gumaxv skin

Post by Paul »

This is the IE7 white space bug article :D

http://green-beast.com/blog/?p=92
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Search Option doesnot highlight in ie 7 latest gumaxv skin

Post by Paul »

Alright, here is the fix:

just replace gumax-searchBody section with following:

#gumax-searchBody {
/* border: 1px solid #99FF00; /* testing */
background: none;
position: relative;
padding: 0;
width: 220px;
vertical-align: middle;
}

This should do the job! :lol:
User avatar
node
Rank 4
Rank 4
Posts: 21
Joined: July 19th, 2008, 2:51 am

Re: Search Option doesnot highlight in ie 7 latest gumaxv skin

Post by node »

ops i did find it out :P sorry for not posting it! just slippd outta my head!
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Search Option doesnot highlight in ie 7 latest gumaxv skin

Post by Paul »

Lol, I'm a little fast this time... :lol:
User avatar
jpetrie
Rank 0
Rank 0
Posts: 2
Joined: August 14th, 2008, 2:37 am

Re: Search Option doesnot highlight in ie 7 latest gumaxv skin

Post by jpetrie »

I overcame the problem by commenting out
background: transparent; /* background color of the text field */

I prefer the search field background being white anyway, though I'm not sure why this fixes the problem.

John
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Search Option doesnot highlight in ie 7 latest gumaxv skin

Post by Paul »

Oh, I didn't know that, I guess these are relate to IE7 bugs ... :x
Post Reply