Hey,
Just noticed something fishy, looks like an IE7 issue because I don't see it on my other workstations that run earlier versions of IE.
My website has a drop down list, but when you try to select an item in the list using the mouse it "undrops". I can use the up/down keys to select the item I want. However, this is my company's website which is accessed by customers etc., so I need to fix this.
I looked into the CSS file, but couldn't find anything that stood out.
Here's the HTML snippet:
Anybody seen this before?
Just noticed something fishy, looks like an IE7 issue because I don't see it on my other workstations that run earlier versions of IE.
My website has a drop down list, but when you try to select an item in the list using the mouse it "undrops". I can use the up/down keys to select the item I want. However, this is my company's website which is accessed by customers etc., so I need to fix this.
I looked into the CSS file, but couldn't find anything that stood out.
Here's the HTML snippet:
Code:
<dl>
<dt><label for="selCompanyName">Company Name:</label></dt>
<dd>
<select id="selCompanyName" name="compname">
<option value=""></option>
<option value="comp1">comp1</option>
<option value="comp2">comp2</option>
<option value="comp3">comp3</option>
</select>
</dd>
<dt>
<label for="txtCompPart">Competitor Part #</label></dt>
<dd><input type="text" name="partnumber" id="txtCompPart" /><input type="submit" class="submitButton" id="btnCompSearch" value="Go" /></dd>
</dl>
Anybody seen this before?