|
How to change the font color if the user click on dynamic popup menu?
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, 2007 - Where can I change the font size of the top click menu javascript items?
- May 25, 2007 - How can I setup size and color of the font for individual button in the css pop up menus?
- Jun 17, 2007 - I want to have a different font and color for my dhtml menu scripts submenu items...
- Jul 29, 2007 - Is there any way to change the font size of the submenu links in dhtml floating menu?
- Aug 14, 2007 - How I can set the font and backcolors in menu site web using the hexidecimal number?
- Aug 16, 2007 - I cannot change the background color of the script for menu
- Aug 21, 2007 - Is there a way in the onmouseover drop down menu html code maker to change preview screen color?
- Aug 23, 2007 - When I roll over the javascript menu select the font color doesn't change
- Sep 02, 2007 - Does this include any future updates after I'll purchase your html submenu?
- Sep 09, 2007 - Is it possible to change colors for the css popup menus and the submenus in the css popup menus?
- Sep 12, 2007 - How I can change the background color of the horizontal menus?
|