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!
changine format of hyperlinks
Post new topic   Reply to topic    HTML Help Forum Index -> General HTML
View previous topic :: View next topic  
Author Message
motyl29@yahoo.com



Joined: 09 Dec 2004
Posts: 1

PostPosted: Thu Dec 09, 2004 8:19 am     changine format of hyperlinks Reply with quote

Hi. The default formatting for a hyperlink is blue and underlined. Is there a way to change this? I want to put mine in a sidebar and have them be black and not underlined. Thanks for any help!
Corey Bryant
Site Admin


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

PostPosted: Fri Dec 10, 2004 5:37 am     Reply with quote



You can use CSS - to be placed in the <HEAD>

If you are using divs:
Code:
<style type="text/css">
.rightitem p
{
   margin:0;
   padding: 10px;
   color:#ffffff;
   font-size: .7em;
}

.rightitem p a
{
     color:#FFD717;
     text-decoration: underline;
}

.rightitem p a:visited
{
     color:#FFD717;
     text-decoration: underline;
}

.rightitem p a:hover
{
     color: #990000;
     text-decoration: underline;
}
</style>

Just change the colors above & the name of the div to the correct names.

Or something like:
Code:
<style type="text/css">
a.nav
{
     color:#C39B00;
     text-decoration: none;
}
a:visited.nav
{
     color:#C39B00;
     text-decoration: none;
}
a:hover.nav
{
     color:#FF0000;
     text-decoration: underline;
}</style>

And then here:
Code:
<a class="nav" href="/default.asp">Home</a>
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> General HTML 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
HTML Help topic RSS feed 

 
HOSTING / DESIGN
MAKE MONEY

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