HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
LinkColorChanges
Post new topic   Reply to topic    HTML Help Forum Index -> CSS
View previous topic :: View next topic  
Author Message
RamyaRajan



Joined: 18 Apr 2008
Posts: 6

PostPosted: Tue Apr 22, 2008 8:29 pm     LinkColorChanges Reply with quote

HI everyone

I added my doubts in the last question..i didnt any answer still..i just want to do the link color changes showing the difference of visted and unvisited links.when i refresh the page ,all the link colors come back to original color.And the link pages should open in the same page.


Thanks.
Corey Bryant



Joined: 15 May 2004
Posts: 8131
Location: Castle Rock CO USA

PostPosted: Sat Apr 26, 2008 1:09 pm     Reply with quote

I moved your post from the Tables to just the CSS forum - it did not seem to have anything to do with Tables (or maybe I am wrong).

You should use styles for this
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Untitled 1</title>
<style type="text/css">
a:link {
   color: #000080;
}
a:visited {
   color: #000080;
}
a:hover {
   color: #000080;
   text-decoration:none;
}
a:active {
   color: #000080;
}
</style>
</head>

<body>
<a href="http://www.example.com">Example</a>
</body>

</html>
You can also check out this page for some more information.

_________________
Corey
Hosting Solutions | Mile High Merchant Accounts | Expression Web Blog
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> CSS All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
 
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial