Cambiar posición enlaces primarios en el theme Nitobe
Buenas,
he construido la siguiente página con drupal http://www.fundaciolafabrica.cat/ y he utilizado el theme Nitobe, pero me gustaría saber como podría cambiar la posición de los enlaces primarios (que por defecto en este theme están en la parte superior, encima de la imagen) y cambiarlos a debajo de la imagen...
No tengo mucha idea de css pero me gustaría intentarlo... por donde tendría que empezar?
Saludos!
Xagarsan
- Inicie sesión o regístrese para enviar comentarios

Hola, en el tema deve haber
Hola, en el tema deve haber un archivvo que se llame style.css o ***.css. Allí busca primary-nav y masthead y modificalos. Si no saves como puedes pegar aquí el código.
Quiza el tema te permita hacerlo desde /admin/build/block/list
page.tpl.php
Hola buenas,
creo que el orden de visualización de nitobe se encuentra en el fichero page.tpl.php, lo que no consigo es cambiarlo para que se visualize primero el mastehead y luego los primary links:
?>
<?php/* Needed to avoid Flash of Unstyled Content in IE */
?>
$(document).ready(function() {
$("#superfish ul.menu").superfish(); });
<?phpprint $head_title;
?>
<?phpprint $head;
?>
<?phpprint $styles;
?>
<?phpprint $scripts;
?>
<?phpprint phptemplate_get_ie_styles() . "\n";
?>
<?phpif (isset($nitobe_logo)) { print $nitobe_logo; }
?>
<?phpif (isset($nitobe_title)) { print $nitobe_title; }
?>
<?phpif (isset($nitobe_slogan)) { print $nitobe_slogan; }
?>
<?phpif (!empty($header)):
?>
<?phpif (isset($header)) { print $header; }
?>
<?phpendif;
?>
<?phpif (!empty($search_box)):
?>
<?phpprint $search_box;
?>
<?phpendif;
?>
<?phpif (isset($nitobe_primary_links)):
?>
<?phpif (isset($nitobe_primary_links)) { print $nitobe_primary_links; }
?>
<?phpif (isset($nitobe_secondary_links)) :
?>
<?phpprint $nitobe_secondary_links;
?>
<?phpendif;
?>
<?phpif (isset($primary_links)) :
?>
<?phpprint $primary_menu;
?>
<?phpendif;
?>
<?phpelse:
?>
<?phpendif;
?>
<?phpif (isset($masthead)) { print $masthead; }
?>
<?phpif (!empty($breadcrumb)) { print $breadcrumb; }
?>
<?phpif ($show_messages && !empty($messages)) { print $messages; }
?>
<?phpprint $help;
?>
<?phpif (!empty($mission)):
?>
<?phpprint $mission;
?>
<?phpendif;
?>
<?phpif (!empty($title)):
?>
<?phpprint $nitobe_page_title;
?>
<?phpif (isset($nitobe_node_timestamp)):
?>
<?phpprint $nitobe_node_timestamp;
?>
<?phpendif;
?>
<?phpendif;
?>
<?phpif (!empty($tabs)):
?>
<?php">if ($tabs2) { print ' has-secondary'; }
?>
<?phpprint $tabs;
?>
<?phpif ($tabs2):
?>
<?phpprint $tabs2;
?>
<?phpendif;
?>
<?phpendif;
?>
<?phpprint $content;
?>
<?phpif (!empty($left)):
?>
<?phpprint $left;
?>
<?phpendif;
?>
<?phpif (!empty($right)):
?>
<?phpprint $right;
?>
<?phpendif;
?>
<?phpif (isset($bottom_left)) { print $bottom_left; }
?>
<?phpif (isset($bottom_center_left)) { print $bottom_center_left; }
?>
<?phpif (isset($bottom_center_right)) { print $bottom_center_right; }
?>
<?phpif (isset($bottom_right)) { print $bottom_right; }
?>
<?phpprint $footer_message . $footer;
?>
<?phpprint $closure;
?>
En fin, le estoy dando vueltas pero no he podido cambiarlo como quiero.
Saludos
Xagarsan