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