CSS

Drupal 7: How to Add Bootstrap Multi-level Dropdown Submenu

Submitted by admin on Mon, 04/11/2016 - 10:57

Download and install a Bootstrap theme. Modify the following at
vi bootstrap/templates/menu/system/form-element.func.php

 
/**
* Overrides theme_form_element().
*/
function bootstrap_form_element(&$variables) {
$element = &$variables['element'];
$name = !empty($element['#name']) ? $element['#name'] : FALSE;
$type = !empty($element['#type']) ? $element['#type'] : FALSE;
$checkbox = $type && $type === 'checkbox';
$radio = $type && $type === 'radio';

Tags