Copy link to clipboard
Copied
How do I add a cursor pointer for a drop-down menu? The pointer hovers nicely over the menu but disappears when entering the drop-down selections. The menu is housed in a separate header file.
Copy link to clipboard
Copied
What application are looking for help on? This forum is for legacy Creative Suite issues that not specific to any application.
Copy link to clipboard
Copied
Moved to Dreamweaver Forum
Copy link to clipboard
Copied
in the css of the element, add cursor:pointer...
.submenu {
cursor:pointer;
color:red;
background-color:blue;
etc...
}
Copy link to clipboard
Copied
If it's linked text, the default cursor behavior is always a pointer. If it's not linked text or the code contains errors, you might not the see a pointer.