Welcome Guest, Not a member yet? Register   Sign In
Need help about Menu Link in a navigation area
#1

[eluser]Unknown[/eluser]
Hello! I just started using CodeIgniter. I am now making a site with a menu. I looks like this:

Home | About | Contact Us | Terms and Condition

Now, I was having a hard time figuring out how to make this since I think there is a way how to handle this in CI.

Thanks in advance for the future help.
#2

[eluser]John_Betong_002[/eluser]
Try this:

Code:
// style_sheet.css
  .flr        {float:right}
  .box_tabs   {margin:-1.88em 0 0 0}
  .box_tabs a {padding:0 5px 0 15px}

// View file
  <div class='box_tabs flr'>
    &lt;?php
      $a=array
      (
      'home'      =>   base_url(),
      'about'     =>  'about',
      'blog'      =>  'blog',
      'contact'   =>  'contact',
      'terms'     =>  'terms',
      'calendar'  =>  'joke-of-the-day',
      );
      foreach($a as $title => $link):
        echo anchor($link, $title);
      endforeach;
    ?&gt;    
  </div>
&nbsp;
Welcome to the forum.
&nbsp;
&nbsp;




Theme © iAndrew 2016 - Forum software by © MyBB