Rodders
06-20-2005, 05:31 PM
Hi
I am trying to get the following to occur with my main navigation links at my site www.total-image-nation.co.uk
* link is #ffffff normally
* on hover and active it needs to be #fd9a00
* the link for the current page is also #fd9a00
I'm looking at fang's example in this thread.....
http://www.webdeveloper.com/forum/showthread.php?t=63226&highlight=body+link
but i just can't see how it is supposed to work, and needless to say it doesn't do what I want with my edited code
some HTML.......
<BODY ID='news'>
<DIV ID='rmenu'>
<A HREF='news.php' ALT='NEWS' ID='news'>NEWS</A>
<BR><A HREF='about.php' ALT='ABOUT' ID='about'>ABOUT</A>
<BR><A HREF='/forum/index.php' ALT='FORUM' ID='forum'>FORUM</A>
<BR><A HREF='events.php' ALT='EVENTS' ID='events'>EVENTS</A>
<BR><A HREF='exhibitions.php' ALT='EXHIBITIONS' ID='exhibitions'>EXHIBITIONS</A>
<BR><A HREF='opportunities.php' ALT='OPPORTUNITIES' ID='opportunities'>OPPORTUNITIES</A>
<BR><A HREF='portfolios.php' ALT='PORTFOLIOS' ID='portfolios'>PORTFOLIOS</A>
<BR><A HREF='reviews.php' ALT='REVIEWS' ID='reviews'>REVIEWS</A>
<BR><A HREF='competitions.php' ALT='COMPETITIONS' ID='competitions'>COMPETITIONS</A>
<BR><A HREF='offers.php' ALT='OFFERS' ID='offers'>OFFERS</A>
<BR><A HREF='archive.php' ALT='ARCHIVE' ID='archive'>ARCHIVE</A>
<BR><A HREF='links.php' ALT='LINKS' ID='links'>LINKS</A>
<BR><A HREF='contact.php' ALT='CONTACT US' ID='contact'>CONTACT US</A>
</DIV>
some CSS.......
#rmenu A {
color: #ffffff;
text-decoration: none
}
#news #about #events #exhibitions #opportunities,
#portfolios #reviews #competitions #offers #archive,
#links #contact #admin {
color: #fd9a00;
text-decoration: none
}
I am trying to get the following to occur with my main navigation links at my site www.total-image-nation.co.uk
* link is #ffffff normally
* on hover and active it needs to be #fd9a00
* the link for the current page is also #fd9a00
I'm looking at fang's example in this thread.....
http://www.webdeveloper.com/forum/showthread.php?t=63226&highlight=body+link
but i just can't see how it is supposed to work, and needless to say it doesn't do what I want with my edited code
some HTML.......
<BODY ID='news'>
<DIV ID='rmenu'>
<A HREF='news.php' ALT='NEWS' ID='news'>NEWS</A>
<BR><A HREF='about.php' ALT='ABOUT' ID='about'>ABOUT</A>
<BR><A HREF='/forum/index.php' ALT='FORUM' ID='forum'>FORUM</A>
<BR><A HREF='events.php' ALT='EVENTS' ID='events'>EVENTS</A>
<BR><A HREF='exhibitions.php' ALT='EXHIBITIONS' ID='exhibitions'>EXHIBITIONS</A>
<BR><A HREF='opportunities.php' ALT='OPPORTUNITIES' ID='opportunities'>OPPORTUNITIES</A>
<BR><A HREF='portfolios.php' ALT='PORTFOLIOS' ID='portfolios'>PORTFOLIOS</A>
<BR><A HREF='reviews.php' ALT='REVIEWS' ID='reviews'>REVIEWS</A>
<BR><A HREF='competitions.php' ALT='COMPETITIONS' ID='competitions'>COMPETITIONS</A>
<BR><A HREF='offers.php' ALT='OFFERS' ID='offers'>OFFERS</A>
<BR><A HREF='archive.php' ALT='ARCHIVE' ID='archive'>ARCHIVE</A>
<BR><A HREF='links.php' ALT='LINKS' ID='links'>LINKS</A>
<BR><A HREF='contact.php' ALT='CONTACT US' ID='contact'>CONTACT US</A>
</DIV>
some CSS.......
#rmenu A {
color: #ffffff;
text-decoration: none
}
#news #about #events #exhibitions #opportunities,
#portfolios #reviews #competitions #offers #archive,
#links #contact #admin {
color: #fd9a00;
text-decoration: none
}