Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Mods & Themes (http://www.bvlist.com/forumdisplay.php?f=109)
-   -   Simple Theme (http://www.bvlist.com/showthread.php?t=9091)

Chez 23rd April 2013 09:55

Simple Theme
 
1 Attachment(s)
http://img687.imageshack.us/img687/7...fe9be9ce9d.png

INSTALLATION:

1. Unrar the files from attached archive
2. Put all the extracted files in your root folder
3.In bittorrent.php after the default stylesheet add this:
PHP Code:

<link rel="stylesheet" type="text/css" href="style.css" /> 

4.After tag add this:
PHP Code:

<div id="main_container">
    <
div id="header">
        <
div class="logo"><img src="./images/logo.gif" border="0" alt="" title="" /></div>       
    </
div>
        <
div class="menu">
            <
ul>                                                                         
                <
li class="selected"><a href="index.php">home</a></li>
                <
li><a href="browse.php">browse</a></li>
                <
li><a href="upload.php">upload</a></li>
                <
li><a href="viewoffers.php">offers</a></li>
                <
li><a href="my.php">profile</a></li>
                <
li><a href="forums.php">forums</a></li>
                <
li><a href="userchat.php">chat</a></li>
                <
li><a href="rules.php">rules</a></li>
                <
li><a href="staff.php">staff</a></li>
            </
ul>
        </
div>
    <
div class="center_content"

This will be the menu and main content.
5.In the footer of the tracker add this:
PHP Code:

 <div id="footer">                                              
        <
div class="left_footer"><a href="index.php">home</a> <a href="faq.php">faq</a> <a href="rules.php">privacy policy</a><a href="mailto:chezandrei@gmail.com">contact</a></div>
        <
div class="right_footer"><a href="#"  target="_blank"><img src="./images/chezdesign.gif" border="0" alt="" title="" /></a>
        </
div>   
    
    </
div>
    
    
    
</
div

THAT'S ALL - ENJOY!

Krypto 23rd April 2013 13:24

What version of source is this theme for??

Also I'd change the image links so that your not hotlinking images from BVList and using the sites resources unless Fynnon has agreed to this?

<img src="http://www.bvlist.com/images/logo.gif" border="0" alt="" title="" />

<img src="http://www.bvlist.com/images/chezdesign.gif" border="0" alt="" title="" />

Chez 23rd April 2013 13:27

The theme can be used from netmaniack to TBDev 2008

And wait a fucking minute ... somebody has put that image links there ... these are the hotlinks to that images:

here's proof

http://img14.imageshack.us/img14/226...116b2b64c8.png
http://img153.imageshack.us/img153/1...f69b6dd369.png

Bump: look the problem ... when i post a hostlink the forum automately transform the link to: http://www.bvlist.com/images/image.gif

it's not my fall:suicide:

and please look again before to post this kind of comments

joeroberts 23rd April 2013 13:41

easy fix add ./ infront of the image path or use $site_url

Chez 23rd April 2013 13:45

Thanks joe for the tip:muscle:

Krypto 23rd April 2013 21:54

Hey I'm just pointing out that the code you posted was linking to this site in those two places, so no need to F**ing take that tone with me.

If your having issues with the forum translating your code wrong then report it instead of going off on one.

It's attitudes like this that makes me feel like pulling the plug on me providing my vBulletin License for here :wallbash:

firefly007 23rd April 2013 22:30

Quote:

Originally Posted by Krypto (Post 40500)
Hey I'm just pointing out that the code you posted was linking to this site in those two places, so no need to F**ing take that tone with me.

If your having issues with the forum translating your code wrong then report it instead of going off on one.

It's attitudes like this that makes me feel like pulling the plug on me providing my vBulletin License for here :wallbash:

Hey Krypto don't stress out man.

Chez 24th April 2013 09:26

Quote:

Originally Posted by Krypto (Post 40500)
Hey I'm just pointing out that the code you posted was linking to this site in those two places, so no need to F**ing take that tone with me.

If your having issues with the forum translating your code wrong then report it instead of going off on one.

It's attitudes like this that makes me feel like pulling the plug on me providing my vBulletin License for here :wallbash:

if i know that's not true it's normal to react like, and sorry for reaction but that was for the moment:suicide::muscle:

BamBam0077 18th July 2013 14:08

:friend:Cheers for your programming work :)

BamBam0077 18th July 2013 15:03

thought I would post that simple fix as most new coders would wonder why it wouldn't work 100% but I will explain if you browse via your files you will see most <> tags use ' ' instead of " " within it. But if you already new that then good on you :) small fix but worth sharing.

Old code -

PHP Code:

<div id="main_container">
    <
div id="header">
        <
div class="logo"><img src="./images/logo.gif" border="0" alt="" title="" /></div>       
    </
div>
        <
div class="menu">
            <
ul>                                                                         
                <
li class="selected"><a href="index.php">home</a></li>
                <
li><a href="browse.php">browse</a></li>
                <
li><a href="upload.php">upload</a></li>
                <
li><a href="viewoffers.php">offers</a></li>
                <
li><a href="my.php">profile</a></li>
                <
li><a href="forums.php">forums</a></li>
                <
li><a href="userchat.php">chat</a></li>
                <
li><a href="rules.php">rules</a></li>
                <
li><a href="staff.php">staff</a></li>
            </
ul>
        </
div>
    <
div class="center_content"

New Code -
PHP Code:

<div id='main_container'>
    <
div id='header'>
        <
div class='logo'><img src='images/logo.gif' border='0' alt='' title='' /></div>       
    </
div>
        <
div class='menu'>
            <
ul>                                                                         
                <
li class='selected'><a href='index.php'>home</a></li>
                <
li><a href='browse.php'>browse</a></li>
                <
li><a href='upload.php'>upload</a></li>
                <
li><a href='viewoffers.php'>offers</a></li>
                <
li><a href='my.php'>profile</a></li>
                <
li><a href='forums.php'>forums</a></li>
                <
li><a href='userchat.php'>chat</a></li>
                <
li><a href='rules.php'>rules</a></li>
                <
li><a href='staff.php'>staff</a></li>
            </
ul>
        </
div>
    <
div class='center_content'

same applies on the following -

Old Code -

PHP Code:

<link rel="stylesheet" type="text/css" href="style.css" /> 

New -
PHP Code:

<link rel='stylesheet' type='text/css' href='style.css' /> 

also here too -

Old Code -
PHP Code:

 <div id="footer">                                              
        <
div class="left_footer"><a href="index.php">home</a> <a href="faq.php">faq</a> <a href="rules.php">privacy policy</a><a href="mailto:chezandrei@gmail.com">contact</a></div>
        <
div class="right_footer"><a href="#"  target="_blank"><img src="./images/chezdesign.gif" border="0" alt="" title="" /></a>
        </
div>   
    
    </
div>
    
    
    
</
div

New Code -

PHP Code:

 <div id='footer'>                                              
        <
div class='left_footer'><a href='index.php'>home</a> <a href='faq.php'>faq</a> <a href='rules.php'>privacy policy</a><a href='mailto:chezandrei@gmail.com'>contact</a></div>
        <
div class='right_footer'><a href='#'  target='_blank'><img src='images/chezdesign.gif' border='0' alt='' title='' /></a>
        </
div>   
    
    </
div>
    
    
    
</
div



All times are GMT +2. The time now is 09:40.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.