Skip navigation
bluefishy3
Currently Being Moderated

Odd cursor over menu items

Jul 16, 2012 8:21 AM

This is a really weird problem, but for some reason when I mouse over a menu item for this website, the cursor is either stays as an arrow or a text select, instead of a little pointing hand.  I've never seen this on any of my other BC sites.  Can anyone help me understand why that's happening?  The URL is http://kaoud.businesscatalyst.com.

 

Thanks!

 
Replies
  • Currently Being Moderated
    Jul 16, 2012 8:31 AM   in reply to bluefishy3

    On line 52 of your styles.css

     

    Add this to your rules:

     

    cursor: auto;

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 16, 2012 8:33 AM   in reply to bluefishy3

    Hi bluefishy3,

     

    your "links" are technically no links. You have no a-tag defined. It works as a link because you have inline javascript in there:

     

    <td height="1" width="39" valign="top" style="background: url(&quot;/images/nav_home_over.jpg&quot;) no-repeat scroll 0% 0% transparent;" selcss="nav_selected" selimg="/images/nav_home_over.jpg" onclick="document.location='/index.htm';" id="nav" class="nav_selected" title=""><img height="1" border="0" width="39" alt="" src="http://njcdn.worldsecuresystems.com/CatalystImages/1x1.gif"></td>

     

    should be roughly something like this to get the pointer cursor working.

    <td height="1" width="39" valign="top"><a style="background: url(&quot;/images/nav_home_over.jpg&quot;) no-repeat scroll 0% 0% transparent;" selcss="nav_selected" selimg="/images/nav_home_over.jpg" href="index.htm" id="nav" class="nav_selected" title=""><img height="1" border="0" width="39" alt="" src="http://njcdn.worldsecuresystems.com/CatalystImages/1x1.gif"></a></td>

     

    Nicole - BCGurus.com

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 16, 2012 8:59 AM   in reply to bluefishy3

    Exactly, however are you using a dynamic menu? Is is set to default? If so, I don't wanna make it more complicated than it has to be. Brads answer above is correct, only I would add

    cursor: pointer; to your .nav selector on line 39 in your style.css (http://kaoud.businesscatalyst.com/stylesheets/style.css:

     

    (line 39)

    .nav {

        ...

        cursor: pointer;


    }

     

    Nicole - BCGurus.com


     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points