Topic: text on menu
i need to implement menu
<ul id="navigation" class="grid_8">
<li><a href="contact.html"><span class="meta">Get in touch</span><br />Contact Us</a></li>
<li><a href="blog.html"><span class="meta">Latest news</span><br />Blog</a></li>
<li><a href="portfolio.html"><span class="meta">Our latest work</span><br />Portfolio</a></li>
<li><a href="about.html"><span class="meta">Who are we?</span><br />About</a></li>
<li><a href="index.html" class="current"><span class="meta">Homepage</span><br />Home</a></li>
</ul>from this
<ul id="navigation" class="grid_8">
<?php foreach($this->find('/')->children() as $menu): ?>
<li><?php echo $menu->link($menu->title, (in_array($menu->slug, explode('/', $this->url)) ? ' class="current"': null)); ?></li>
<?php endforeach; ?>
<li><a<?php echo url_match('/') ? ' class="current"': ''; ?> href="<?php echo URL_PUBLIC; ?>">דף הבית</a></li>
</ul> how i enter a text like this "<span class="meta">Get in touch</span><br />Contact Us"
Last edited by bermaneyal (2010-07-29 22:29)

