|
How to change the font color if the user click on javascript menu example?
Return to Recent Questions
Q:
How to modify data.js in deluxe menu to change the font color if the user
click on css pull down menu.
Expl. If the user click on 'Webdesign' and then on 'Thema Webdesign' the
color dosn't change to #333. So the user don't now, where is it.
Please test it on www.media-design.ch. Thank!
A:
Deluxe Tree doesn't save a pressed
item as it saves a tree state. It works within 1 page only and if you
reload the page you should set a pressed item using Javascript API:
function dtreet_ext_setPressedItem (menuInd, itemID)
<script type="text/javascript">
var i = <?php echo $selitem; ?>;
onload=setPressed;
function setPressed()
{
dtreet_ext_setPressedItem(0,dtreet_ext_getItemIDByIndex(0, i));
}
</script>
You should define selitem using server side script.
Return to Recent Questions
Related:
- Apr 02, 2009 - Where can I change the font size of the top menus in javascript items?
- May 25, 2009 - How can I setup size and color of the font for individual button in the right click popup menu?
- Jun 17, 2009 - I want to have a different font and color for my form dropdown menu submenu items...
- Jul 29, 2009 - Is there any way to change the font size of the submenu links in css menu examples?
- Aug 14, 2009 - How I can set the font and backcolors in menu example using the hexidecimal number?
- Aug 16, 2009 - I cannot change the background color of the web menu
- Aug 21, 2009 - Is there a way in the onmouseover expandable menus maker to change preview screen color?
- Aug 23, 2009 - When I roll over the down css menu the font color doesn't change
- Sep 02, 2009 - Does this include any future updates after I'll purchase your javascript menu popup?
- Sep 09, 2009 - Is it possible to change colors for the navigation menu html and the submenus in the navigation menu html?
- Sep 12, 2009 - How I can change the background color of the menu dhtml javascript?
|