Hyperlink fonts

  • Thread starter Thread starter Guest
  • Start date Start date
Modify your style
<style>
<!--
a:active { font-family: serif; font-size: 8pt }
-->
</style>

to:

<style>
<!--
a:link { font-family: serif; font-size: 8pt; }
a:visited { font-family: serif; font-size: 8pt; }
a:active { font-family: serif; font-size: 8pt; }
a:hover { font-family: serif; font-size: 8pt; }
-->
</style>


and set the font size to the size that you want used.



--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Thanks Steve,
How do you set the standard font in a css....?
I wants my standard "start" font set to verdana 8pt

Best regards

Per

"Steve Easton" skrev:
 
body{
font-family: Verdana, serif;
font-size: 8pt;
}

If you do the above you don't need to specify the font for the a tags like I showed you
earlier,
just the color.

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