tags:

views:

283

answers:

5

I have two DIV's and when I put DIV #2 inside of DIV#1 and then view my page, when I put my cursor over DIV #2 it changes the cursor to the select (highlight) cursor?

I am very confused?

+2  A: 

You must have something in the div that the browser is interpreting as text.

Jeremy
its interpreting the DIV as text, lol. When I take it out it's fine. That's bs...
Sam
+2  A: 

Is the CSS property for cursor set? It may have the value 'text' set for it's property value.

Look for

div {
    cursor: text;
}
alex
I think its just "cursor: text"
Alconja
+1  A: 

Rules other than "cursor" can change the cursor also. I think using 'zoom' can change the cursor to a highlight/text cursor under certain circumstances for example.

apphacker
Do you know what these circumstances are?
alex
A: 

If this is a big problem you can always change the cursor manually in css

cursor: pointer;

CSS Cursor Reference: http://cndbooks.com/csscursors.htm

Jethro Larson
A: 

This is the just the type of thing FireFox w/ FireBug can instantly help you figure out... Just right-click and 'Inspect Element' and CSS is given. Voila.

Scott Evernden