How to edit theme for mybb?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sanjananb
    New Member
    • Feb 2011
    • 1

    How to edit theme for mybb?

    Recently I created a community with opensource PHP platform. There is a usefulness page link in my theme.

    It has been created by theme creator. I have try to contact him for getting help about this problem, But he didn't help me.

    This page will redirect my site to member list section, But i doesn't like it.

    I want to remove it from my theme. How can i do it? I know a little about php and css...what is the template section to edit? please help me.....here is my link
    Last edited by Niheel; Feb 27 '11, 02:42 PM.
  • Sudaraka
    New Member
    • Jan 2011
    • 55

    #2
    I guess you want to remove the "Member List" from the 4 tabs in the header.

    In your header/menu template HTML, change this
    Code:
    <div id="mm_navbar">
    
    <a href="http://haffow.com/search.php">Search</a>
    <a href="http://haffow.com/memberlist.php">Member List</a>
    <a href="http://haffow.com/calendar.php">Calendar</a>
    <a href="http://haffow.com/misc.php?action=help">Help</a>
    
    </div><!-- /mm_navbar -->
    To this (comment out the HTML for "Member List" tab)
    Code:
    <div id="mm_navbar">
    
    <a href="http://haffow.com/search.php">Search</a>
    <!-- <a href="http://haffow.com/memberlist.php">Member List</a> -->
    <a href="http://haffow.com/calendar.php">Calendar</a>
    <a href="http://haffow.com/misc.php?action=help">Help</a>
    
    </div><!-- /mm_navbar -->
    (or you can remove that line completely)

    Comment

    Working...