This is a migrated thread and some comments may be shown as answers.

IE9 using a custom skin trying to override the cursor behaviour

3 Answers 36 Views
Menu
This is a migrated thread and some comments may be shown as answers.
VeriFone
Top achievements
Rank 1
VeriFone asked on 05 May 2011, 04:03 PM
Hi,

Are there any known problems when using IE9 with custom skins? Specifically when changing the mouse cursor from a pointer to a hand when hovering over a menu item.

For whatever reason I cannot seem to be able to override the:

.RadMenu a.rmLink
cursor: default;

IE8 works fine.

Any ideas??

Many Thanks

Mark

3 Answers, 1 is accepted

Sort by
0
Helen
Telerik team
answered on 10 May 2011, 04:56 PM
Hi Mark,

Please try the following:

<style type="text/css">
  .RadMenu a.rmLink
    {
       cursor: pointer !important;
    }
</style>


Regards,
Helen
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
VeriFone
Top achievements
Rank 1
answered on 11 May 2011, 04:01 PM
Hi Helen,

Many thanks that appears to have worked. I'm curious as to why:
<style type="text/css">
  .RadMenu a.rmLink
    {
       cursor: hand !important;
    }
</style>


did not work??

Thanks

Mark


0
Helen
Telerik team
answered on 12 May 2011, 09:24 AM
Hi Mark,

Probably it is a browser bug. It also doesn't work for standard asp:panel:

<head id="Head1" runat="server">
    <title></title>
    <style type="text/css">
       
        #Panel1
        {
             
            cursor: hand !important;
        }
     
    </style>
</head>
<body>
    <form id="form1" runat="server">
    
    <asp:Panel ID="Panel1" runat="server" BackColor="Gray" Height="200px" Width="200px">
      
    </asp:Panel>
    
    </form>
       
</body>


Regards,
Helen
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Menu
Asked by
VeriFone
Top achievements
Rank 1
Answers by
Helen
Telerik team
VeriFone
Top achievements
Rank 1
Share this question
or