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