I would like to see feature where you can see what images you've clicked on. Then when you go back to thumbs, the ones you've looked at should have different colored borders around them or something.
Add the following in the theme's style.css file:
a:visited .image{
border-style: solid;
border-width: 2px;
border-color: purple;
margin: 2px;
}
season to taste.
valid point imo (I think there's even an item on the dev todo list). Moving this thread accordingly.
Joachim
added pseudo-classes
- a:link .image
- a:visited .image
- a:focus .image
- a:hover .image
- a:active .image
to all themes in the devel branch
Hi
as this is a "minor" modification, maybe it could be applied to the stable (1.4.x) version ?
Thanks in advance for your answer.
You're welcome to check out the devel branch of the SVN (http://sourceforge.net/svn/?group_id=89658) and apply the modifications I comitted. However, the policy "no new features for existing releases" still applies, no matter if the feature is major or minor.
Thanks, I've checked out the style.css files from the devel branch, and it works fine (on top of the stable branch).