Options

Hover change 'Contact Me'

ParisParis Registered Users Posts: 126 Major grins
edited August 16, 2013 in SmugMug Customization
Back to tweaking.

Question: Going to my CONTACT ME page... Can someone please tell me the code I would use to Hover and Change Colour on the Click Here To Contact Me line.

Comments

  • Options
    aschendelaschendel Registered Users Posts: 283 Major grins
    edited August 16, 2013
    There are a few ways, is that link in an HTML block?

    Andy
  • Options
    ParisParis Registered Users Posts: 126 Major grins
    edited August 16, 2013
    Hi Andy...yes it is in an HTML block where i have code that leads the viewer to my email page.
  • Options
    aschendelaschendel Registered Users Posts: 283 Major grins
    edited August 16, 2013
    Cool, the way I'd probably start with is on that block's CSS tab add something like this:
    A
    {
      color:#0000FF;
    }
    
    A:hover
    {
      color:#FF0000;
    }
    

    You can put your own colors there, and if you want to underline it that's just
    text-decoration: underline;
    

    etc. etc. etc.

    HTH,

    Andy
  • Options
    ParisParis Registered Users Posts: 126 Major grins
    edited August 16, 2013
    aschendel wrote: »
    Cool, the way I'd probably start with is on that block's CSS tab add something like this:
    A
    {
      color:#0000FF;
    }
    
    A:hover
    {
      color:#FF0000;
    }
    

    You can put your own colors there, and if you want to underline it that's just
    text-decoration: underline;
    

    etc. etc. etc.

    HTH,

    Andy

    Done like dinner...thanks Andy
Sign In or Register to comment.