Skip to content

Instantly share code, notes, and snippets.

@lanoxx
Created October 28, 2016 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lanoxx/02382d6b99ff8ccd40580957ed0f81c7 to your computer and use it in GitHub Desktop.
Save lanoxx/02382d6b99ff8ccd40580957ed0f81c7 to your computer and use it in GitHub Desktop.
Support placing the navbar into the top navigation
function bootstrap_mobildata_preprocess_form (&$variables) {
if ($variables['attributes']['id'] == 'search-block-form') {
if (!isset ($variables['attributes']['class'])) {
$variables['attributes']['class'] = array();
}
$variables['attributes']['class'] = array_merge ($variables['attributes']['class'], array('navbar-form navbar-right'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment