Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7024313
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:49:26+00:00 2026-05-27T23:49:26+00:00

When viewing my site, the cursor only changes to the gloved hand for <a>

  • 0

When viewing my site, the cursor only changes to the gloved hand for <a> tags, not <button> tags. Is there a reason for this?

Here is my code (the button tags have an id of #more in css3).

 #more {
    background:none;
    border:none;
    color:#FFF;
    font-family:Verdana, Geneva, sans-serif;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T23:49:27+00:00Added an answer on May 27, 2026 at 11:49 pm

    see:
    https://developer.mozilla.org/en-US/docs/Web/CSS/cursor

    so you need to add: cursor:pointer;

    In your case use:

    #more {
      background:none;
      border:none;
      color:#FFF;
      font-family:Verdana, Geneva, sans-serif;
      cursor:pointer;
    }
    

    This will apply the curser to the element with the ID “more” (can be only used once). So in your HTML use

    <input type="button" id="more" />
    

    If you want to apply this to more than one button then you have more than one possibility:

    using CLASS

    .more {
      background:none;
      border:none;
      color:#FFF;
      font-family:Verdana, Geneva, sans-serif;
      cursor:pointer;
    }
    

    and in your HTML use

    <input type="button" class="more" value="first" />
    <input type="button" class="more" value="second" />
    

    or apply to a html context:

    input[type=button] {
      background:none;
      border:none;
      color:#FFF;
      font-family:Verdana, Geneva, sans-serif;
      cursor:pointer;
    }
    

    and in your HTML use

    <input type="button" value="first" />
    <input type="button" value="second" />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get errors when viewing forms and there are not any. I can close
Is it possible to rule out a script load only when viewing site on
When viewing my site in chrome there is a large margin at the bottom
When viewing a web site on a mobile device (iPad, Galaxy Tab) there's always
I am currently developing this site: tochat.vn As viewing in Firefox 7.0.1, it has
I want to check whether the user is viewing my site from a mobile
While viewing the source of a web page, I came across this CSS, applied
When viewing submitted changelists in p4v, is there a way to display a particular
I use emacs for viewing and editing code and other text files. I wanted
I'm viewing variables using the debugger. In debug builds everything in the code below

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.