Forum Moderators: not2easy
See: [webmasterworld.com...]
But you might find this more useful:
[webmasterworld.com...]
The thing I want is for the current tab to remain in the hover position, or at least to keep the graphic of the hover position.
Look at PublicSphere's second link again. It contains several solutions that will meet your needs.
The short answer is that CSS does not provide a simple, straightforward way to accomplish what you want. The reason for this is that CSS, being a styling language primarily concerned with the appearance of pages on the web, does not have any way of knowing, by itself, what the clicked link was, nor what page it is currently on. There are ways (detailed in the link above) to couple CSS with other technologies that will assist CSS in getting this information, but it requires either (a) adding code to each HTML source, (b) using a server side scripting language to add code to the HTML source, or (c) using client side scripting to identify the current page and change the style object to fit. CSS cannot do those things on it's own.
cEM