Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Manuel Socarras #1
visited links in dinamic page
ASP/VBScript/Access
i have a table created dinamically with one column containing links:
....
For j = iFieldFirst To iFieldLast
Response.Write vbTab & "<TD>" & "›› ><A href='...'>" &
arrDBData(j, i) & "</A></TD>" & vbCrLf
Next
....
the problem is that when the user click in one link, when returning to
the page, all of them change its color as visited links
TIA,
Manuel
Manuel Socarras Guest
-
Dinamic Text and URL
Hello!: Does anyone knows if there is a tutorial on how to display text in a flash animation from a .txt file (i know this is possible). What I... -
Resetting "Visited" links to "links" color when new browser opens
HELP! This should be simple, but I can't find info: In using CSS for font color for text hyperlinks, I have mine set so that the "links" are a... -
visited links inside of fireworks pop-ups?
I am looking for a way to either apply stylesheets to a popup so that all visited links show up as a different color, or alter the js to get the same... -
Visited Links Colours
Anybody know why of all the links on a page, ony one doesn't follow the rules laid out in Page Properties to change the colour to......when visited?... -
Julian Roberts #2
Re: visited links in dinamic page
You could use CSS to create a style whereby the visited link colour is the
same as the active link colour.
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest
-
Manuel Socarras #3
Re: visited links in dinamic page
i had tried it but then the color change on rollover is lost:
<STYLE type="text/css">
<!--
.dynTable {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
}
<a:link {
color: #333333;
text-decoration: none;
}
a:hover {
color: #FF9900;
text-decoration: none;
}
a:visited {
color: #333333;
text-decoration: none;
}
-->
</STYLE>
now my son suggested me moving the visited color from the css to the
BODY tag and it works !!!???
a:visited {
text-decoration: none;
}
-->
</STYLE>
</HEAD>
<BODY vlink="#333333">
Manuel Socarras Guest
-
Michael Fesser #4
Re: visited links in dinamic page
.oO(Manuel Socarras)
Fire him. ;)>i had tried it but then the color change on rollover is lost:
>[...]
>
>now my son suggested me moving the visited color from the css to the
>BODY tag and it works !!!???
Your problem was just a wrong order of the pseudo-classes. To work as
expected they have to be in the order :link, :visited, :hover, :active.
Keep in mind that :link and :visited are mutually exclusive, while the
other pseudo-classes might apply at the same time. That's why you will
get different results with different orders.
Micha
Michael Fesser Guest
-
Manuel Socarras #5
Re: visited links in dinamic page
thanks a lot Micha. i can't fire him but i'll make a deduction in his
salary this month :xD
manuel
Michael Fesser wrote:> .oO(Manuel Socarras)
>
>>>>i had tried it but then the color change on rollover is lost:
>>[...]
>>
>>now my son suggested me moving the visited color from the css to the
>>BODY tag and it works !!!???
>
> Fire him. ;)
>
> Your problem was just a wrong order of the pseudo-classes. To work as
> expected they have to be in the order :link, :visited, :hover, :active.
> Keep in mind that :link and :visited are mutually exclusive, while the
> other pseudo-classes might apply at the same time. That's why you will
> get different results with different orders.
>
> MichaManuel Socarras Guest



Reply With Quote

