Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Torrent Trader (http://www.bvlist.com/forumdisplay.php?f=29)
-   -   TorerentTable dimension (http://www.bvlist.com/showthread.php?t=636)

hack346 15th July 2008 09:33

TorerentTable dimension
 
1 Attachment(s)
How can i resize dimension for this table? I asked & to official site but no answer

djlee 16th July 2008 02:43

Re: TorerentTable dimension
 
in short .. you cant lol

the table is already very scrunched up .. with a little CSS editing you may be able to squeeze a few extra pixels out of the width but nothing to the amount you want .. you would have to severely cut the torrent names down and possibly remove 1 or 2 columns.

it would be easier to enlarge the other frames if you really want them to match

Grom 3rd September 2008 02:48

functions.php
PHP Code:

function torrenttable($res) {
  global 
$site_config$CURUSER$THEME$LANGUAGE;  //Define globals

  
if ($site_config["MEMBERSONLY_WAIT"] && $site_config["MEMBERSONLY"] && in_array($CURUSER["class"], explode(",",$site_config["WAIT_CLASS"]))){
    
$gigs $CURUSER["uploaded"] / (1024*1024*1024);
    
$ratio = (($CURUSER["downloaded"] > 0) ? ($CURUSER["uploaded"] / $CURUSER["downloaded"]) : 0);
    if (
$ratio || $gigs 0$wait $site_config["WAITA"];
    elseif (
$ratio $site_config["RATIOA"] || $gigs $site_config["GIGSA"]) $wait $site_config["WAITA"];
    elseif (
$ratio $site_config["RATIOB"] || $gigs $site_config["GIGSB"]) $wait $site_config["WAITB"];
    elseif (
$ratio $site_config["RATIOC"] || $gigs $site_config["GIGSC"]) $wait $site_config["WAITC"];
    elseif (
$ratio $site_config["RATIOD"] || $gigs $site_config["GIGSD"]) $wait $site_config["WAITD"];
    else 
$wait 0;
  }
  
?>
  <table align=center cellpadding="0" cellspacing="0" class="ttable_headinner" width=99%> 

and change code width
PHP Code:

<table align=center cellpadding="0" cellspacing="0" class="ttable_headinner" width=99%> 

and edit
your theme css

hack346 9th January 2009 10:55

tnx anyway, i solved...in my mod :)


All times are GMT +2. The time now is 11:12.

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