default color for links

W

Workinghard

Currently the default color for text links is blue. When I create a text link
the color is blue. How do I change the default link colors so that all links
using the default color will change to my prefered color?
 
S

Steve Easton

using CSS and assigning a style a tag.
Try this in the head section of the page in html view.

<style type ="text/css">
a{color: red;}
</style>

Change color as desired.
--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
S

Steve Easton

You're welcome.

If you want to also remove the underline it would be:
<style type ="text/css">
a{
color: red;
text-decoration: none;
}
</style>

You can also change colors when hovered and a bunch of other stuff with CSS.

Very basic example is the left navigation here.
www.95isalive.com


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top