I would like the same (blue)colour to show when on the page of selected link that the mouse over colour. (indication for browser to know where you are on site - show in website menu) As far as I know this is the active link. A have put it as such in my CSS, but it is not working. Can anyone spot the problem in my css?
The "active" state happens only between clicking the link and the page loading. If you want to indicate a "current" link, then you need to do something like:
<a href="#" class="active">link</a>
... then give .active the same css formatting as "hover"
If you have a look at my attached css file. I already have a style for .LinkA that has to be like that. I am looking for something to ad, so that when you are on the page of that link, then it is the blue. Is that possible, or do I have to apply, like in your example a diffirent style to the link when it is on that certain page?
Semblance: yes, it is necessary to make changes to the code to show the "current" page. Web pages are "stateless:" they don't know which was the "last link to be clicked."
Bookmarks