Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MouseOver affects text only instead of total Table Cell

Status
Not open for further replies.

PoppapumpJ

Programmer
Dec 17, 2001
86
US
I have a TD Tag

<TD id=&quot;Canvas_HideTD&quot; class=&quot;Show_Hide_Menu&quot;>
Hide Menu
</TD>

My Styles.css class for this is:

.Show_Hide_Menu
{
cursor: hand;
height: 100%;
width: 10px;
}

The Problem is that The cursor stays as an arrow except over the text.

Any Suggestions.

Thanks
 
wait a minute. what you have does exactly what I think you want. a hand for the TD (column) correct. What browser/version are you using? IE 5.5 shows a hand over the entire cell.
admin@onpntwebdesigns.com
 
Yeah, I thought, for sure, this sould be working but, for some reason it only works over the text.

I am using IE 6.0. That could be causeing the problem
 
Hi -

I've never had any luck using the cursor property with td. Does IE 5+ use CSS1 or CSS2? Anyway I got un-tagged text to keep an arrow with a mouseover.

<td onMouseOver=&quot;this.style.cursor='default';&quot;>Keep arrow</td>

Cheers,
ND [smile]

bigoldbulldog@hotmail.com
 
Read this: Thread216-338918
I think it can be helpful for you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top