Hi,
I'd like to some help on the minimatica theme.
My problem : I integrated a "like button" in the footer.php just here :
<nav id="access" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary_nav', 'container_id' => 'primary-nav', 'container_class' => 'nav', 'fallback_cb' => 'minimatica_nav_menu' ) ); ?>
<ul><div class="fb-like" data-href="http://www.facebook.com/FrenchflarePage" data-send="true" data-layout="button_count" data-width="450" data-show-faces="false"></div></ul>
</nav>
As you can see on frenchflare.com the button appears way lower than the footer menu and not centered, but works fine.
The thing is, i'd prefer to have it on the same line than the menu, but it seems to me that this piece of code looks for categories names.
<div id="primary-nav" class="nav">
<ul>
<li><a href="<?php echo home_url(); ?>" rel="home"><?php _e( 'Home', 'minimatica' ); ?></a>
</li>
<?php wp_list_categories( 'title_li=' ); ?>
</ul>
</div><!-- #primary-nav -->
=> So if someone has a solution to integrate it right after the last word of the menu, let me know
=> Second option would be to at least to center it and to reduce the space between those two.
Thanks for your feedbacks.