On Apr 28, 2009, at 12:41 PM, Ryan Oswald wrote: > This is driving me INSANE! > Best way to explain this is to just show the site we are working on... > http://www.createtwo.com/villager/shopvillager/ > > So... the category lists at the bottom... some will have suckerfish > hover menus to > display a sub menu. If you hover over "Story People"... a sub menu > will rollout... > however, it should have a right arrow image next to "Story People" and > the whole > sub menu should have a nice dropshadow background image. > Now... in firefox web developer plugin... click "edit css", there it > is. WTF?
according to the stylesheet (superfish.css) should load http://www.createtwo.com/villager/shopvillager/css/images/hovers/shadow.png but that returns a 404. the path you want in your stylesheet is .sf-shadow ul { background: url(../images/hovers/shadow.png) bottom right no-repeat;} not .sf-shadow ul { background: url(images/hovers/shadow.png) bottom right no-repeat;} (What you currently have) The same goes for: http://www.createtwo.com/villager/shopvillager/css/images/hovers/arrows-ffffff.png Philippe --- Philippe Wittenbergh http://l-c-n.com/ ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
