MyBB Community Forums

Full Version: Editing forum layout
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I need to replace Help button on my own with my own link and icon and once I ckick on it it would redirect me on another website. How I can implement this?

[Image: dy50dk.jpg]
Replace the book image on headerlinks_sprite.png

Edit the bold bits in Templates > Default theme > Header template > Header

<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">Help</a></li>
(2018-02-05, 03:08 PM)iAndrew Wrote: [ -> ]Replace the book image on headerlinks_sprite.png

Edit the bold bits in Templates > Default theme > Header template > Header

<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">Help</a></li>

Thanks, it solved my problem.

There's a trouble when I edited headerlinks_sprite.png and replaced book icon with my own icon it works pretty well, however once I changed template from:


<div id="container">
       <a name="top" id="top"></a>
       <div id="header">
           <div id="logo">
               <div class="wrapper">
                   <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
                   <ul class="menu top_links">
                       {$menu_portal}
                       {$menu_search}
                       {$menu_memberlist}
                       {$menu_calendar}
                      <li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">Help</a></li>
                   </ul>
               </div>
           </div>
           <div id="panel">
               <div class="upper">
                   <div class="wrapper">
                       {$quicksearch}
                       {$welcomeblock}
                   <!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
               <!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
           </div>
       </div>
       <div id="content">
           <div class="wrapper">
               {$pm_notice}
               {$remote_avatar_notice}
               {$bannedwarning}
               {$bbclosedwarning}
               {$unreadreports}
               {$pending_joinrequests}
               {$awaitingusers}
               <navigation>
               <br />

to:


<div id="container">
       <a name="top" id="top"></a>
       <div id="header">
           <div id="logo">
               <div class="wrapper">
                   <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
                   <ul class="menu top_links">
                       {$menu_portal}
                       {$menu_search}
                       {$menu_memberlist}
                       {$menu_calendar}
                       <li><a href="https://www.site.com">mysitename</a></li>
                   </ul>
               </div>
           </div>
           <div id="panel">
               <div class="upper">
                   <div class="wrapper">
                       {$quicksearch}
                       {$welcomeblock}
                   <!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
               <!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
           </div>
       </div>
       <div id="content">
           <div class="wrapper">
               {$pm_notice}
               {$remote_avatar_notice}
               {$bannedwarning}
               {$bbclosedwarning}
               {$unreadreports}
               {$pending_joinrequests}
               {$awaitingusers}
               <navigation>
               <br />

It changes my image to a search icon!

nevermind, fixed.