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

Opciones de visualización de comentarios

Seleccione la forma que prefiera para mostrar los comentarios y haga clic en «Guardar las opciones» para activar los cambios.

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(); });

<?php
print $head_title;
?>

<?php
print $head;
?>

<?php
print $styles;
?>

<?php
print $scripts;
?>

<?php
print phptemplate_get_ie_styles() . "\n";
?>

<?php
if (isset($nitobe_logo)) { print $nitobe_logo; }
?>

<?php
if (isset($nitobe_title)) { print $nitobe_title; }
?>

<?php
if (isset($nitobe_slogan)) { print $nitobe_slogan; }
?>

<?php
if (!empty($header)):
?>

<?php
if (isset($header)) { print $header; }
?>

<?php
endif;
?>

<?php
if (!empty($search_box)):
?>

<?php
print $search_box;
?>

<?php
endif;
?>

<?php
if (isset($nitobe_primary_links)):
?>

<?php
if (isset($nitobe_primary_links)) { print $nitobe_primary_links; }
?>

<?php
if (isset($nitobe_secondary_links)) :
?>

<?php
print $nitobe_secondary_links;
?>

<?php
endif;
?>

<?php
if (isset($primary_links)) :
?>

<?php
print $primary_menu;
?>

<?php
endif;
?>

<?php
else:
?>

<?php
endif;
?>

<?php
if (isset($masthead)) { print $masthead; }
?>

<?php
if (!empty($breadcrumb)) { print $breadcrumb; }
?>

<?php
if ($show_messages && !empty($messages)) { print $messages; }
?>

<?php
print $help;
?>

<?php
if (!empty($mission)):
?>

<?php
print $mission;
?>

<?php
endif;
?>

<?php
if (!empty($title)):
?>

<?php
print $nitobe_page_title;
?>

<?php
if (isset($nitobe_node_timestamp)):
?>

<?php
print $nitobe_node_timestamp;
?>

<?php
endif;
?>

<?php
endif;
?>

<?php
if (!empty($tabs)):
?>

    <?php
    if ($tabs2) { print ' has-secondary'; }
    ?>
    ">
    <?php
    print $tabs;
    ?>

<?php
if ($tabs2):
?>

    <?php
    print $tabs2;
    ?>

<?php
endif;
?>

<?php
endif;
?>

<?php
print $content;
?>

<?php
if (!empty($left)):
?>

<?php
print $left;
?>

<?php
endif;
?>

<?php
if (!empty($right)):
?>

<?php
print $right;
?>

<?php
endif;
?>

<?php
if (isset($bottom_left)) { print $bottom_left; }
?>

<?php
if (isset($bottom_center_left)) { print $bottom_center_left; }
?>

<?php
if (isset($bottom_center_right)) { print $bottom_center_right; }
?>

<?php
if (isset($bottom_right)) { print $bottom_right; }
?>

<?php
print $footer_message . $footer;
?>

<?php
print $closure;
?>

En fin, le estoy dando vueltas pero no he podido cambiarlo como quiero.

Saludos

Xagarsan