Re: [css-d] different colour of an active link/page

2010-08-28 Thread David Hucklesby
On 8/28/10 8:51 AM, Martin wrote: On 08/28/2010 02:45 PM, David Laakso wrote: Martin wrote: Hi there, I've been googling for it and a:active doesn't work as I'd like it to. I've got a menu. When I hover over a menu item the colour changes to orange. I'd like it to stay orange as long as I'm o

Re: [css-d] different colour of an active link/page

2010-08-28 Thread Tomasz Kisielewski
Hi On my site i did this: #navigation li a:hover { background-image:url(../images/hoover-btn.png); color:#0af915;} } li#current li a:link, li#current li a:visited { color: #0af915; } You can have a look, hoover changes only background button and text color, afte

Re: [css-d] different colour of an active link/page

2010-08-28 Thread Martin
On 08/28/2010 02:57 PM, Kevin Rodenhofer wrote: Yeah. a:active doesn't do that. There is, however, a neat trick I found somewhere that will do this for you. First, on each and every page represented in the navigation, you have to give the body tag an id like: or Whatever the page is...

Re: [css-d] different colour of an active link/page

2010-08-28 Thread Brian M. Curran
Martin wrote: > Hi there, > > I've been googling for it and a:active doesn't work as I'd like it to. > > I've got a menu. When I hover over a menu item the colour changes to > orange. I'd like it to stay orange as long as I'm on this particular > page for visitors to know where they are at the m

Re: [css-d] different colour of an active link/page

2010-08-28 Thread Kevin Rodenhofer
Yeah. a:active doesn't do that. There is, however, a neat trick I found somewhere that will do this for you. First, on each and every page represented in the navigation, you have to give the body tag an id like: or Whatever the page is... Then, in the navigation you need a separate id for

Re: [css-d] different colour of an active link/page

2010-08-28 Thread Martin
On 08/28/2010 02:45 PM, David Laakso wrote: Martin wrote: Hi there, I've been googling for it and a:active doesn't work as I'd like it to. I've got a menu. When I hover over a menu item the colour changes to orange. I'd like it to stay orange as long as I'm on this particular page for visit

Re: [css-d] different colour of an active link/page

2010-08-28 Thread David Laakso
Martin wrote: Hi there, I've been googling for it and a:active doesn't work as I'd like it to. I've got a menu. When I hover over a menu item the colour changes to orange. I'd like it to stay orange as long as I'm on this particular page for visitors to know where they are at the moment.

[css-d] different colour of an active link/page

2010-08-28 Thread Martin
Hi there, I've been googling for it and a:active doesn't work as I'd like it to. I've got a menu. When I hover over a menu item the colour changes to orange. I'd like it to stay orange as long as I'm on this particular page for visitors to know where they are at the moment. That's my css: =