MyBB Community Forums

Full Version: Twist-SD (tableless theme)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13
Impressive amount of work. Worth it you think?
How to add more tab in the profile? such as Profile Visits, Profile comments etc
ACP -> Templates and styles -> Templates -> Twist-SD templates -> member templates -> member_profile and find

<li><a href="#tab-4">Other</a></li>

and under that add new tab

<li><a href="#tab-5">Tab name</a></li>

Replace Tab name with something else (profile comments or profile buddies).

Find

</div>
<!--end: Profile content-->

and before that add

<div class="tab_content" id="tab-5">

</div>

Just a note: every new tab must have different number in div id and a href .
Thanks a lot mate
amazing!!!!!!!!!!
I am having trouble with the drop down option.
A you can see there is a missing space where I can't seem to remove.
[Image: XUJng.png]
Also every empty space I click on my forum links me to an option on the drop down. PLEASE HELP ME :[
For that clicking part you have unclosed html tag on your site and when you hover on empty space you will get redirect.Run your site throuth validator and take a good look at unclosed tags http://validator.w3.org/ (paste your forum url in that box and click check).

For dropdown menu and empty space can you paste your header template,something is wrong with html code inside dropdown menu.
(2012-03-30, 09:17 PM)Johnny S Wrote: [ -> ]For that clicking part you have unclosed html tag on your site and when you hover on empty space you will get redirect.Run your site throuth validator and take a good look at unclosed tags http://validator.w3.org/ (paste your forum url in that box and click check).

For dropdown menu and empty space can you paste your header template,something is wrong with html code inside dropdown menu.
My header:
<!--Navbar-->
<div class="menu">

<div class="menu_inside">

  <ul class="menu">
         <li><a href="{$mybb->settings['bburl']}/index.php">Home</a></li>
         <li><a href="{$mybb->settings['bburl']}/forum.php">Forums</a></li>
	 <li><a href="{$mybb->settings['bburl']}/donate.php">Premium</a></li>
         <li><a href="{$mybb->settings['bburl']}/index.php">Extra Links</a>
  <ul>
         <li> <a href="">Site Rules</ a> </ li>
         <li> <a href="{$mybb->settings['bburl']}/misc.php?page=staff">Site Ranks</ a> </ li> 
         <li> <a href="{$mybb->settings['bburl']}/misc.php?page=staff">Site Staff</ a> </ li> 
  <ul>
           <li> <a href="">Site Rules</ a> </ li>
            <li> <a href="{$mybb->settings['bburl']}/misc.php?page=staff">Site Ranks</ a> </ li> 
            <li> <a href="{$mybb->settings['bburl']}/misc.php?page=staff">Site Staff</ a> </ li> 
        </ ul> 
    </ li>
 </ ul> 
    </ li>
  
   </ul>
    

         </div>



 </div>




</div>

<!--Navbar-->
1.You have extra div inside your header.

2.Your dropdown code is incorrect in some parts (extra ul tag for second level ,my theme doesn't have second level dropdown menu,only one)

3.Try with this:


<div class="menu">

<div class="menu_inside">

  
<ul class="menu">
         <li><a href="{$mybb->settings['bburl']}/index.php">Home</a></li>
         <li><a href="{$mybb->settings['bburl']}/forum.php">Forums</a></li>
         <li><a href="{$mybb->settings['bburl']}/donate.php">Premium</a></li>
         <li><a href="{$mybb->settings['bburl']}/index.php">Extra Links</a>
  <ul>
         <li> <a href="#">Site Rules</ a> </ li>
         <li> <a href="{$mybb->settings['bburl']}/misc.php?page=staff">Site Ranks</a> </li> 
         <li> <a href="{$mybb->settings['bburl']}/misc.php?page=staff">Site Staff</a> </li> 
 </ul> 
    </li>
  
   </ul>



 </div>




</div>

<!--Navbar--> 


cant download..
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13