Thread: Rollout menu
View Single Post
  #2 (permalink)  
Old 04-17-06, 04:37 PM
jfulton's Avatar
jfulton jfulton is offline
Community VIP
 
Join Date: Apr 2006
Location: Los Angeles, CA
Posts: 660
Thanks: 0
Thanked 0 Times in 0 Posts
I'm not really sure what your exact question is, and quite frankly your site is a pain to look at (at least in Firefox...it asks me to save files from yahoo finance when I mouse over an iframe or something? I don't know, I got the heck out of there...) so I'm not going to waste too much time trying to debug your site .

But one thing I noticed was this little bit of code:
Code:
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
I do not see an over class in your css file.

And please post the html output of your page (although it is good to see that you are using smarty ).

And let me know when your site is cleaned up a little bit.
Reply With Quote