Using CSS - how to change the font and color in this link

Hi all . . . Not sure how to accomplish this.

I’d like to change the font, font-size and color also using CSS.

<a href="#top">Return to Top of Page</a>

I’m not sure where to start on this.

Thanks . . . Rick

Get ready to face palm.
a {font-size: in px/em/% ; color:#hex value;}
That’s it.

As i am assuming you want full cross browser compatibility, the problem arises when you want to that get THIS link as the code above would change the color of ALL link sin your page. So that’s what classes are for.

.topLink{font-size: in px/em/% ; color:#hex value;} will change the color/size of all element that have topLink as a class so… you will have to ad that to your link like this:

<a href=“#top” class=“topLink” >Return to Top of Page</a>