By jimmyg164 on
Hi All
I am trying to add an image at the start of my top navigation bar in the framework theme but it keeps moving onto the second line
<div id="navlogo">
<a href="#"><img alt="5frogs home logo" src="/<?php print path_to_theme(); ?>/images/logo2.png" /></a> <!-- added by JimmyG -->
</div><!-- close navlogo -->
<div id="nav">
<?php if ($nav): ?>
<?php print $nav ?>
<?php endif; ?>
<?php if (!$nav): ?> <!-- if block in $nav, overrides default $primary and $secondary links -->
<?php if (isset($primary_links)) : ?>
<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
<?php endif; ?>
<?php endif; ?>
</div> <!-- /#nav --