Hello,
Looks like your site is down. It just displays “error”.
However before it went down, I did notice you have some css that is hiding the child menus.
Something like
ul.parent-sidebar-menu ul ul{
display: none;
}
If you remove that, you will see the child menus again.
Hello Mat – I went in and commented out the above code but it is still not displaying the Workshops menu.
Hello,
I see it on my end in this file http://www.justaskpublications.com/wp-content/thesis/skins/classic-r/css.css
Line 1057
ul.parent-sidebar-menu ul ul {display: none;}
Hello Mat – Cleared the firewall cache which finally removed the Line 1057 code. Menu now loads fully open as opposed to opening on hover. Before removing Line 1057 it was not opening at all so this helps. Any way to restore the hover open that previously existed?
Thanks!
Hello,
Without knoWing how you had created a hover feature I can’t say for sure why it no longer works, but I would start by looking at where you setup the feature originally and see if the code is still there.
Usually when a feature disappears on update it is because it was written into a theme file that was changed when the site was updated.
If the code is still there can you post where it is?
Hell Mat – Traced through the css that was included in the Thesis theme skin and found it was missing the a and hover actions. Should have three lines:
ul.parent-sidebar-menu ul ul{
display: none;
}
ul.parent-sidebar-menu:hover ul ul{
display: block;
}
ul.parent-sidebar-menu:a ul ul{
display: block;
}
Working fine now.