hello,
i like the feature (pagecolor and pagebgcolor) in which you specify the url so that when you're on that page, the menu item changes color. however, i don't like links beign active for the page your on.
as an example:
when im on a homepage, i'd like the home menu item to be "highlighted" but not active.
can i specify the url, use pagecolor and pagebgcolor, and still have the link be inactive/dead?
as a secondary question, is there a way to specify MORE than one url (ie. sometimes a visitor can come to my site and the url is http://www.seboe.com and other times that same homepage url is http://www.seboe.com/index.htm...i would like pagecolor and pagebgcolor to work with both urls).
*** [edit]
i've found the solution for the second question...sort of. i just have to make sure every link to my site homepage does not reference index.htm. there is still the problem that if someone did use index.htm, the menu would not be highlighted
***
hopefully i've explained my problems. thanks in advance for any help.
ty
can i specify a url AND keep the link dead?
I do not think you can do this with the menu as is. If you are JS savvy enough you could probably hack it, but its not worth the time. Is is really that bad to allow people to click it, it doesnt hurt.can i specify the url, use pagecolor and pagebgcolor, and still have the link be inactive/dead?
To solve your second problem, alittle javascript at the top of the page will work. Add this to solve your problem IMMEDIATELY after your BODY tag of your homepage only.
Code: Select all
<SCRIPT>
if( window.location.href == "http://www.seboe.com/index.htm" )
{
window.location.href="http://websites.milonic.com/seboe.com/";
}
</SCRIPT>
Dave Hergert
Software Engineer
"Helping to make the menu better, one
at a time."
Software Engineer
"Helping to make the menu better, one

thanks, i'll try that bit of code later today
thanks hergio.
regarding the first problem: no, it's not that bad to have an active link to the current page, it's just one of those usability guidelines i like to follow. people get confused if they click a link and it takes them nowhere.
it's always been one of my pet peeves when the logo/banner in the header of a home page is hyperlinked to the home page.
ty
regarding the first problem: no, it's not that bad to have an active link to the current page, it's just one of those usability guidelines i like to follow. people get confused if they click a link and it takes them nowhere.
it's always been one of my pet peeves when the logo/banner in the header of a home page is hyperlinked to the home page.
ty
Yes I do see where you are coming from. The banner link is mainly because its on everypage and its too much of a pain to remove it only for the homepage.
If you REALLY want to make it happen, I have an idea. It involves not using the url= of the aI() and instead calling a javascript function passed a URL you want to go to. It would check to see if the URL is the same as the current page and if so, not go anywhere, otherwise it would do the window.location.href thing. But this would sort of step on the toes of the pagecolor feature. If you want me to elaborate, let me know. But basically when you click something you are able to determine the href of the hyperlink that was clicked as well as the current page URL very easily, its up to you how you use that information.
If you REALLY want to make it happen, I have an idea. It involves not using the url= of the aI() and instead calling a javascript function passed a URL you want to go to. It would check to see if the URL is the same as the current page and if so, not go anywhere, otherwise it would do the window.location.href thing. But this would sort of step on the toes of the pagecolor feature. If you want me to elaborate, let me know. But basically when you click something you are able to determine the href of the hyperlink that was clicked as well as the current page URL very easily, its up to you how you use that information.

Dave Hergert
Software Engineer
"Helping to make the menu better, one
at a time."
Software Engineer
"Helping to make the menu better, one

thanks,
for now, i've got a deadline to meet and i can't worry about it too much. really, my client could care less and will never know the difference. when i have more time i want to play with you suggestion because i mostly understand it and it should work. funny nobody has brought this up before. i wonder how many of the suggestions actually get included in future versions.
ty
for now, i've got a deadline to meet and i can't worry about it too much. really, my client could care less and will never know the difference. when i have more time i want to play with you suggestion because i mostly understand it and it should work. funny nobody has brought this up before. i wonder how many of the suggestions actually get included in future versions.
ty
Alot. If its a good feature and it will bring a useful feature to the menu and there is a decent amount of requests for a feature, 9 out of 10 will get in. Also budget, time, and feasibility come into play as well of course. Its all Andys call. But there always will be those single requests that are so specific to a certain application, its just not worth putting in...those usually dont.
Dave Hergert
Software Engineer
"Helping to make the menu better, one
at a time."
Software Engineer
"Helping to make the menu better, one
