Hello,
Does anyone know of a module that will allow for a <span> in the primary navigation so that two lines of text can be included for a link.
Here's an example: http://www.planplusonline.com/pricing_overview (see the dropdown links for "Training" and "Support")
Thanks, Lynn Stott
I don't know the answer Lynn but fwiw there's a typo in this line "For your added convenience we have created a YouTube channelhttp://www.youtube.com/user/mikejmor you can subcribe *too* for all new training and updates".
On Fri, Nov 25, 2011 at 7:58 PM, Lynn Stott (Stott Design) < lynn@stottdesign.com> wrote:
Hello,
Does anyone know of a module that will allow for a <span> in the primary navigation so that two lines of text can be included for a link.
Here's an example: http://www.planplusonline.com/pricing_overview (see the dropdown links for "Training" and "Support")
Thanks, Lynn Stott
-- [ Drupal support list | http://lists.drupal.org/ ]
Yes i think you can do through superfish and lets theme it differently.
try to play with this function in template.php while constructing the link items. function theme_menu_item_link($link) { $image_menu_path = path_to_theme().'/images1/'.$classname . '.jpg'; $link['localized_options'] = array('html'=>TRUE,'attributes' =>array('class'=>$classname)); $link['title'] = '<span id="someid">'.check_plain($link['title']).'</span>'; return l($link['title'], $link['href'], $link['localized_options']); }
off course you need to check and correct the typo mistakes and further modify it as your needs.
hope this helps.
Thank you, Anand
On Sat, Nov 26, 2011 at 9:28 AM, Lynn Stott (Stott Design) < lynn@stottdesign.com> wrote:
Hello,
Does anyone know of a module that will allow for a <span> in the primary navigation so that two lines of text can be included for a link.
Here's an example: http://www.planplusonline.com/pricing_overview (see the dropdown links for "Training" and "Support")
Thanks, Lynn Stott
-- [ Drupal support list | http://lists.drupal.org/ ]