MyBB Community Forums

Full Version: Where is my Header Coding?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hhhhh
hi

this code

     
 <ul>
           <li><a href="{$mybb->settings['bburl']}/portal.php">{$lang->xstyled_portal}</a></li>
           <li><a href="{$mybb->settings['bburl']}/index.php">{$lang->xstyled_forum}</a></li>
           <li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->xstyled_members}</a></li>
       </ul>


is your menu
and this code is the search button

 
   <div class="quicksearch">
       <form method="post" action="{$mybb->settings['bburl']}/search.php">
           <input type="hidden" name="action" value="do_search" />
           <input type="hidden" name="postthread" value="1" />
           <input type="hidden" name="forums" value="all" />
           <input type="hidden" name="showresults" value="threads" />
           <input class="searchbox" type="text" name="keywords" placeholder="{$lang->xstyled_search}" />
           <input class="searchbutton" type="submit" value="&#xf002;" title="{$lang->xstyled_gosearch}" />
       </form>
   </div>

u can add your donation button in this area
also it depends where you want to add your button !!
hhhhh
you want to add the donate button add it to

this one




<ul>
          <li><a href="{$mybb->settings['bburl']}/portal.php">{$lang->xstyled_portal}</a></li>
          <li><a href="{$mybb->settings['bburl']}/index.php">{$lang->xstyled_forum}</a></li>
          <li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->xstyled_members}</a></li>
// add your button here.
      </ul>
hhhhh
<ul>
         <li><a href="{$mybb->settings['bburl']}/portal.php">{$lang->xstyled_portal}</a></li>
         <li><a href="{$mybb->settings['bburl']}/index.php">{$lang->xstyled_forum}</a></li>
         <li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->xstyled_members}</a></li>
<li><a href="http://horryboshlings.x10host.com/Forums/showthread.php?tid=27">Donation Packs</a></li>
     </ul>

this will add another button for you after home / forum and members.