multiple hyperlink styles in same page

H

Hector

I am using FP 2000. Up until now I have used frames, and have created two
different styles for hyperlinks- one in the navigation frame and the other
in the main frame. In the navigation frame I have removed underlining by
putting this in the header:
<style>
<!--
a{text-decoration:none}
//-->
</style>

And I have also used a rollover style:
<style fprolloverstyle>A:hover {font-size: 10pt; text-decoration: underline;
font-style: italic}
</style>

However, I now want to get away from using frames for a variety of reasons,
and as far as my limited knowledge goes, the styles I have used for the
navigation frame affect the whole page. What I would like to do is find a
simple way of having standard hyperlinks in the main text of the page, and
hyperlinks such as above in the navigation menu on the same page.

Can anyone help me with this?
Hector
 
G

Guest

In this set of styles:

a { color: #990033 ; text-decoration:none }
a:hover { color: #ff0000 ; text-decoration:underline }

a.rovr { color: #FFFFFF; background-color:#006699;
text-decoration:none }
a.rovr:hover { color: #006699; background-color:#FFFFFF;
text-decoration:none }

The first styles will apply to hyperlinks by default, but the second will
apply to only to those coded <a class="rovr" href=... >

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Windows SharePoint Services Inside Out
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 

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