Hi i recently first time used nice menu for my site and encountering two major problems.
1. In IE the dropdown submenu going behind the main menu of second row. So it cannt be seen or clicked. This is working fine in firefox BTW.
2. I replaced the path of "my account" menu item. Initially it was /user/ in line number 768 (drupal 4.7), I changed it to /contact/view?reset=1&cid=
i.e. changed line 768 from,
$items[] = array('path' => 'user/'. $user->uid, 'title' => t('my account'),
To
$items[] = array('path' => 'civicrm/contact/view?reset=1&cid='. $user->uid, 'title' => t('my account'),
but somehow the path got changed and rather than being
http://www.website.com/drupal/civicrm/contact/view?reset=1&cid=1
the path became
http://www.website.com/drupal/civicrm/contact/view%3Freset%3D1%26cid%3D1
And when clicked it is going to page not found page of civicrm. I talked to civicrm developers and they said it is a double encoding of nice_menues module problem. Can anybody please correct it.
Thanks.
--rafi
Comments
Comment #1
add1sun commentedWell that is a security feature in Drupal to filter funky stuff when theming. This is not a nice menus issue but rather a Drupal practice and you can see that the normal menu creation in Drupal does the same thing if you were to copy that URL into the path for a menu item.