|
abbeyvet -> RE: How to Remove Hyperlink Formatting? (6/27/2003 13:36:39)
|
quote:
<style fprolloverstyle>A:hover {color: #FFFF00} a {text-decoration:none} </style> That will change all the link, which is not, I think, what you have in mind. CSS is the way to go. Read up on the links others have offered, but for a quick fix, try this: STEP ONE Paste this in before the </head> tag in html view (paste from here to Notepad, then into FP): <style type=" text/css" >
a.gray:link {font-weight: bold; text-decoration: none; color: #808080}
a.gray:visited {font-weight: bold; text-decoration: none; color: #808080}
a.gray:hover {font-weight: bold; text-decoration: none; color: #cc0000}
a.gray:active {font-weight: bold; text-decoration: none; color: #cc0000}
</style> STEP TWO Find your link in HTML view (highlight it first in normal view, then switch views). It will look something like this: <a href=" thepage.htm" >Link Text</a> Edit that to read: <a class=" gray" href=" thepage.htm" >Link Text</a> And that should do the trick! It will give you bold gray text, red on mouseover. You can of course edit the colors to suit. Welcome to the wonderfulworld of CSS!!! [:D]
|
|
|
|