View Single Post
  #6  
Old 13th June 2010, 09:19
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
In your theme main.php find
PHP Code:
include("./blocks/usercp.php"); 
and add after
PHP Code:
echo '<div id="sideBar">';
echo 
'<a id="sideBarTab"><img src="http://guv2.com/pmbt2/images/slide-button.gif" alt="sideBar" title="sideBar" /></a>';
echo 
'<div id="sideBarContents" style="width:0px;">';
echo 
'<div id="sideBarContentsInner">';
echo 
'<h2 align="center">&nbsp;</h2>';
echo 
'<ul>';
echo 
'<li><a href="http://www.animeclipse.com">AnimeClipse</a></li>';
echo 
'<li><a href="http://www.omega-team.eu">Omega Team</a></li>';
echo 
'<li><a href="http://www.anime-greek.com">Anime-Greek</a></li>';
echo 
'<li><a href="http://animearth.com">Animearth</a></li>';
echo 
'<li><a href="http://seikisubs.blogspot.com">Seiki Subs</a></li>';
echo 
'<li><a href="http://eternallightsubs.niceboard.net/portal.htm">Eternal Light Subs</a></li>';
echo 
'<li><a href="http://www.ss-anime.info">SS-Anime</a></li>';
echo 
'<li><a href="http://www.tzatziki-fansubs.com">TzaTziki Fansub</a></li>';
echo 
'<li><a href="http://www.onepiecegr-rpg.com">OnePieceGr</a></li>';
echo 
'<li><a href="http://www.animefiury.com">AnimeFiury</a></li>';
echo 
'<li><a href="http://taka-greece.blogspot.com">Taka Greece</a></li>';
echo 
'<li><a href="http://www.ookami-fansubs.com">Okami Fansubs</a></li>';
echo 
'</ul>';
echo 
'</div>';
echo 
'</div>';
echo 
'</div>'
Now find
PHP Code:
function overlib_init() {
        echo 
"<script type=\"text/javascript\" src=\"overlib/overlib.js\"><!-- overLIB (c) Erik Bosrup --></script>\n";
        echo 
"<script type=\"text/javascript\" src=\"overlib/overlib_shadow.js\"><!-- overLIB (c) Erik Bosrup --></script>\n"
and add after
PHP Code:
        echo "<script type=\"text/javascript\" src=\"js/mootools.js\"></script>\n";
        echo 
"<script type=\"text/javascript\" src=\"js/side-bar.js\"></script>\n"
and add to your css file
Code:
 h2{
    color:#666666;
    font-size:90%;
    font-family:arial;
    margin:10px 10px 10px 10px;
    font-weight:bold;
    }
    
    h2 span{
        font-size:105%;
        font-weight:normal;
    }
    
    ul{
        margin:0px 0px 0px 0px;
        padding:0px 0px 0px 0px;
    }
    
    li{
    margin:0px 0px 1px 30px;
    padding:2px;
    list-style-type:none;
    display:block;
    width:102px;
    background-color: #cccccc;
    }
    
    li a{
        width:100%;
    }
    
    li a:link,
    li a:visited{
    color:#2EB4F3;
    font-family:verdana;
    font-size:70%;
    text-decoration:none;
    display:block;
    margin:0px 0px 0px 0px;
    padding:0px;
    width:100%;
    }
    
    li a:hover{
    color:#666666;
    text-decoration:inherit;
    background-color: #CCCCCC;
    }
    
    #sideBar{
    position: absolute;
    width: auto;
    height: 350px;
    top: 200px;
    right:-7px;
    background-image:url(pics/test2.png);
    background-position:top left;
    background-repeat:no-repeat;
    }
    
    #sideBarTab{
    float:left;
    height:0px;
    width:28px;
    }
    
    #sideBarTab img{
    border:0px solid #FFFFFF;
    }
    
    #sideBarContents{
    overflow:hidden !important;
    }
    
    #sideBarContentsInner{
        width:127px;
    }
make sure you add the images to your pics folder of your theme
and Im not sure on the making it stay localized.
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
The Following User Says Thank You to joeroberts For This Useful Post:
Phogo (13th June 2010)