I downloaded menu from :

http://www.stunicholls.com/menu/pro_dropline_2.html

And used in my application. But when iam clicking on a menu it is not highlighting as active menu. That means i want give an active class to a menu which i clicked . How can i do this by using this menu code. My application is in php.

link|improve this question

40% accept rate
might be a good thing if you can provide us with the codes in the document so we can have a better view of the situation. – scornork Feb 6 at 9:38
Without seeing any code, you could always do it manually in CSS, .element:hover { /* Active css */ } – Zar Feb 6 at 10:32
feedback

1 Answer

You could accomplish this using the dirname function or FILE global variable to get the file name/path. Thereby, being able to find which tab should be highlighted.

Imagine this directory tree

html_root/

  • video/

    • file.php
  • music/

    • anotherfile.php

...

Say that each tab is organized into its own directory.

Inside your header file

<?php
if (dirname(__FILE__) == "video") {
  // Set css to video tab
} // etc.
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.