toolman Posted January 16, 2010 Share Posted January 16, 2010 Hi there, I have quite a complex script and want to have the page that is currently active in my navigation a different color or class. I can do all the css, but wanted to know if there was an easy way to do this. Maybe I could just add a line on the index page to say use this class on the active navigation. Is this possible? Quote Link to comment https://forums.phpfreaks.com/topic/188717-change-colour-of-active-page-navigation/ Share on other sites More sharing options...
ignace Posted January 16, 2010 Share Posted January 16, 2010 Just add an additional class attribute to your tag <li class="active"><a href="index.php">Homepage</a></li> And add the CSS: .active a, a:active { background: #F00; color: #000; } Quote Link to comment https://forums.phpfreaks.com/topic/188717-change-colour-of-active-page-navigation/#findComment-996230 Share on other sites More sharing options...
phonydream Posted January 16, 2010 Share Posted January 16, 2010 Just add an additional class attribute to your tag <li class="active"><a href="index.php">Homepage</a></li> And add the CSS: .active a, a:active { background: #F00; color: #000; } Yes, but he/she will still need to determine the active page. Quote Link to comment https://forums.phpfreaks.com/topic/188717-change-colour-of-active-page-navigation/#findComment-996241 Share on other sites More sharing options...
ignace Posted January 16, 2010 Share Posted January 16, 2010 Not if you use PHP you can easily determine the active page: <li<?php print isActivePage($href, $_SERVER['REQUEST_URI']) ? ' class="active"' : ''; ?>><a href="<?php print $href; ?>"><?php print $label; ?></a></li> Quote Link to comment https://forums.phpfreaks.com/topic/188717-change-colour-of-active-page-navigation/#findComment-996259 Share on other sites More sharing options...
phonydream Posted January 16, 2010 Share Posted January 16, 2010 Nice solution! Quote Link to comment https://forums.phpfreaks.com/topic/188717-change-colour-of-active-page-navigation/#findComment-996262 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.