Was wondering if someone could help me out with this. I have a frameset
<frameset cols = "20%, *">
<frame src ="dates.html" name="Days" noresize />
<frame src ="start.html" name="Pictures and Reports" noresize scrolling="auto" />
</frameset>
where it calls a file that has several dates (<td width="132" height="10" ><a href="10-28-09/popup.html" target="Pictures and Reports">10-28-09</a></td></tr>).
When I click on a date it opens up a file called popup.html for that specific date. In the popup.html file the user can click through pictures for that day. Then go back to the date side and click another day and so on. Is it possible to display on the picture side the date I selct on the left side. For example I would like to say on the pictures side that - "You are viewing 10-28-09"
I tried to use the a:active link in CSS, but when I select the picture window on the reight it deselects my active link.
a:link {
color:#26354A;
text-decoration: none;
}
a:visited {
color:#999999;
text-decoration: none;
}
a:hover {
color: #FF6600;
}
a:active {
color:#FF0000;
font-size: 13px;
}
Thank you for any help you can give.



Reply With Quote



Bookmarks