Two different 'visited hyperlinks' colours on same page

G

Guest

Here is something I want to do using Frontpage 2003 -

Senario - Say I have in separate tables with hyperlink (text) colours as:

1) Table 1 - white text on blue background color; and
2) Table 2 within table 1 - blue on a WHITE background

I want the hyperlinks in table 1 to remain white after they have been
visited (as if they go the normal default 'pinky' type color they look
bad/ordinary) BUT for table 2 to go the default 'pinky' color (otherwise if
they go white after clicking on then as per Table 1 then you can not see them)

In Frontpage if I use the - Page Properties/Formatting option to change the
'hyperlink', 'visited hyperlink', 'active hyperlink' color options it applies
then globally for everything - I need them to be table or cell specific, etc

Can anyone help me out at all with this one?

Kev
 
J

Jim Cheshire (Jimco Software)

Here is something I want to do using Frontpage 2003 -

Senario - Say I have in separate tables with hyperlink (text) colours as:

1) Table 1 - white text on blue background color; and
2) Table 2 within table 1 - blue on a WHITE background

I want the hyperlinks in table 1 to remain white after they have been
visited (as if they go the normal default 'pinky' type color they look
bad/ordinary) BUT for table 2 to go the default 'pinky' color (otherwise if
they go white after clicking on then as per Table 1 then you can not see them)

In Frontpage if I use the - Page Properties/Formatting option to change the
'hyperlink', 'visited hyperlink', 'active hyperlink' color options it applies
then globally for everything - I need them to be table or cell specific, etc

Can anyone help me out at all with this one?

Kev

Kev,

You will need to use CSS to do that.

Jim Cheshire
Jimco Software and Books
http://www.jimcosoftware.com
http://www.jimcobooks.com
-----------------------------------------------
Read our new article on moving from FrontPage
to Expression Web at http://www.jimcobooks.com.

Author:
Special Edition Using Microsoft Expression Web (Releasing soon!)

Book includes a CD with FREE FULL VERSIONS of:
DHTML Menu Builder LITE Edition (www.dhtmlmenubuilder.com)
The Logo Creator (www.thelogocreator.com)
 
E

e

Check if your colors in the HTML Tags, and your CSS.

Remember; If you have 2 CSS, that may be the problem.
 
S

Stefan B Rusynko

Create a style (using a class name - say white) in the head section for the table 1 links
<style type="text/css">
a.white {color: white; text-decoration: none}
a.white:link {color: white; text-decoration: none}
a.white:visited {color: white; text-decoration: none}
a.white:hover {color: white; text-decoration: underline}
a.white:active {color: white; text-decoration: none}
</style>

And apply the class to the links in table 1
<a href="yourlink.htm" class="white">


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Here is something I want to do using Frontpage 2003 -
|
| Senario - Say I have in separate tables with hyperlink (text) colours as:
|
| 1) Table 1 - white text on blue background color; and
| 2) Table 2 within table 1 - blue on a WHITE background
|
| I want the hyperlinks in table 1 to remain white after they have been
| visited (as if they go the normal default 'pinky' type color they look
| bad/ordinary) BUT for table 2 to go the default 'pinky' color (otherwise if
| they go white after clicking on then as per Table 1 then you can not see them)
|
| In Frontpage if I use the - Page Properties/Formatting option to change the
| 'hyperlink', 'visited hyperlink', 'active hyperlink' color options it applies
| then globally for everything - I need them to be table or cell specific, etc
|
| Can anyone help me out at all with this one?
|
| Kev
|
 

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