SitePoint Sponsor

User Tag List

Results 1 to 2 of 2

Thread: Color of text not changing on rollover

  1. #1
    SitePoint Evangelist
    Join Date
    Aug 2009
    Posts
    473
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Color of text not changing on rollover

    Hi Guys,

    On my Submit bottom at the bottom of the page the text doesnt change to orange as it should when rolling over the button. Any reason why? And also, how can I get the hand pointer when you rollover it. Of course need to click the square box to make anything work as an acceptance to an order.

    http://freshtastik.ca/modo/catering/


    Thanks,

  2. #2
    It's all Geek to me silver trophybronze trophy
    SitePoint Award Recipient ralph.m's Avatar
    Join Date
    Mar 2009
    Location
    Melbourne, Australia
    Posts
    19,971
    Mentioned
    216 Post(s)
    Tagged
    2 Thread(s)
    It's not an <a> element, it's an input. So instead of this:

    Code:
    #contact-submit a:hover {
    	color: #FC8812;
    }
    you need this:

    Code:
    #contact-submit input:hover {
    	color: #FC8812;
    }

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •